Object/Class

parsel.parse

Lexer

Related Docs: class Lexer | package parse

Permalink

object Lexer

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Lexer
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. sealed abstract class AToken[T <: Token] extends Token with TokenMatcher[T]

    Permalink
  2. final case class Comment(text: String) extends AToken[Comment] with Product with Serializable

    Permalink
  3. final case class FloatNum(floatValue: BigDecimal, syntax: String) extends Num[BigDecimal] with Product with Serializable

    Permalink
  4. final case class ImagNum(floatValue: BigDecimal, syntax: String) extends Num[BigDecimal] with Product with Serializable

    Permalink
  5. final case class Indent(amount: Int) extends AToken[Indent] with Product with Serializable

    Permalink
  6. final case class IntegerNum(intValue: BigInt, syntax: String) extends Num[BigInt] with Product with Serializable

    Permalink
  7. final case class Keyword(word: String) extends AToken[Keyword] with Product with Serializable

    Permalink
  8. sealed abstract class Num[T <: Number] extends AToken[Num[T]]

    Permalink
  9. sealed abstract class OToken extends Token with TokenMatcher[Token]

    Permalink
  10. final case class Operator(chars: String) extends AToken[Operator] with Product with Serializable

    Permalink
  11. final case class Quote(delimiter: String) extends AToken[Quote] with Product with Serializable

    Permalink
  12. abstract class TagTokenMatcher[T <: Token] extends TokenMatcher[T]

    Permalink
  13. sealed trait Token extends AnyRef

    Permalink
  14. trait TokenMatcher[T <: Token] extends AnyRef

    Permalink
  15. final case class Word(word: String) extends AToken[Word] with Product with Serializable

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object Colon extends OToken with Product with Serializable

    Permalink
  5. object ColonEquals extends OToken with Product with Serializable

    Permalink
  6. object Comma extends OToken with Product with Serializable

    Permalink
  7. object Dot extends OToken with Product with Serializable

    Permalink
  8. object EOF extends OToken with Product with Serializable

    Permalink
  9. object Empty extends OToken with Product with Serializable

    Permalink
  10. object FloatNum extends TagTokenMatcher[FloatNum] with Serializable

    Permalink
  11. object ImagNum extends TagTokenMatcher[FloatNum] with Serializable

    Permalink
  12. object Indent extends TagTokenMatcher[Indent] with Serializable

    Permalink
  13. object IntegerNum extends TagTokenMatcher[IntegerNum] with Serializable

    Permalink
  14. object Keyword extends TagTokenMatcher[Keyword] with Serializable

    Permalink
  15. object LBrace extends OToken with Product with Serializable

    Permalink
  16. object LBracket extends OToken with Product with Serializable

    Permalink
  17. object LParen extends OToken with Product with Serializable

    Permalink
  18. object Newline extends OToken with Product with Serializable

    Permalink
  19. object Num extends TagTokenMatcher[Num[Number]]

    Permalink
  20. object Operator extends TagTokenMatcher[Operator] with Serializable

    Permalink
  21. object Quote extends TagTokenMatcher[Quote] with Serializable

    Permalink
  22. object RBrace extends OToken with Product with Serializable

    Permalink
  23. object RBracket extends OToken with Product with Serializable

    Permalink
  24. object RParen extends OToken with Product with Serializable

    Permalink
  25. object Semicolon extends OToken with Product with Serializable

    Permalink
  26. object Whitespace extends OToken with Product with Serializable

    Permalink
  27. object Word extends TagTokenMatcher[Word] with Serializable

    Permalink
  28. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  29. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  31. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  32. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  33. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  34. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  35. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  36. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  37. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  38. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  39. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  40. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  41. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  42. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  44. def wordOrKeyword(str: String): Token

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped