Packages

package combinators

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. sealed trait ACCESSIBLE_ATTRIBUTE_NAME extends Token
  2. case class CHAR(value: String) extends LITERAL with Product with Serializable
  3. case class FLOAT(value: String) extends LITERAL with Product with Serializable
  4. case class IDENTIFIER(name: String) extends ACCESSIBLE_ATTRIBUTE_NAME with Product with Serializable
  5. case class INDENTATION(level: Int) extends Token with Product with Serializable
  6. case class INTEGER(value: String) extends LITERAL with Product with Serializable
  7. sealed trait LITERAL extends Token
  8. case class META(name: String, text: String) extends Token with Product with Serializable
  9. case class PHI(name: "@" = "@") extends ACCESSIBLE_ATTRIBUTE_NAME with Product with Serializable
  10. case class RHO(name: "^" = "^") extends ACCESSIBLE_ATTRIBUTE_NAME with Product with Serializable
  11. case class SELF(name: "$" = "$") extends ACCESSIBLE_ATTRIBUTE_NAME with Product with Serializable
  12. case class SINGLE_LINE_COMMENT(text: String) extends Token with Product with Serializable
  13. case class STRING(value: String) extends LITERAL with Product with Serializable
  14. sealed trait Token extends AnyRef

Value Members

  1. case object ARRAY_DELIMITER extends Token with Product with Serializable
  2. case object ASSIGN_NAME extends Token with Product with Serializable
  3. case object COLON extends Token with Product with Serializable
  4. case object DEDENT extends Token with Product with Serializable
  5. case object DOT extends Token with Product with Serializable
  6. case object DOTS extends Token with Product with Serializable
  7. case object EXCLAMATION_MARK extends Token with Product with Serializable
  8. case object INDENT extends Token with Product with Serializable
  9. case object LBRACKET extends Token with Product with Serializable
  10. case object LPAREN extends Token with Product with Serializable
  11. object Lexer extends RegexParsers
  12. case object NEWLINE extends Token with Product with Serializable
  13. case object PLUS extends Token with Product with Serializable
  14. case object RBRACKET extends Token with Product with Serializable
  15. case object RPAREN extends Token with Product with Serializable
  16. case object SLASH extends Token with Product with Serializable
  17. object errors

Deprecated Value Members

  1. object Parser extends Parsers
    Annotations
    @deprecated
    Deprecated

    (Since version 0.1.2) Use org.polystat.odin.parser.fastparse package instead

Ungrouped