Packages

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. Protected

Type Members

  1. sealed abstract class AToken[T <: Token] extends Token with TokenMatcher[T]
  2. final case class Comment(text: String) extends AToken[Comment] with Product with Serializable
  3. final case class FloatNum(floatValue: BigDecimal, syntax: String) extends Num[BigDecimal] with Product with Serializable
  4. final case class ImagNum(floatValue: BigDecimal, syntax: String) extends Num[BigDecimal] with Product with Serializable
  5. final case class Indent(amount: Int) extends AToken[Indent] with Product with Serializable
  6. final case class IntegerNum(intValue: BigInt, syntax: String) extends Num[BigInt] with Product with Serializable
  7. final case class Keyword(word: String) extends AToken[Keyword] with Product with Serializable
  8. sealed abstract class Num[T <: Number] extends AToken[Num[T]]
  9. sealed abstract class OToken extends Token with TokenMatcher[Token]
  10. final case class Operator(chars: String) extends AToken[Operator] with Product with Serializable
  11. final case class Quote(delimiter: String) extends AToken[Quote] with Product with Serializable
  12. abstract class TagTokenMatcher[T <: Token] extends TokenMatcher[T]
  13. sealed trait Token extends AnyRef
  14. trait TokenMatcher[T <: Token] extends AnyRef
  15. final case class Word(word: String) extends AToken[Word] with Product with Serializable

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  20. def wordOrKeyword(str: String): Token
  21. case object Colon extends OToken with Product with Serializable
  22. case object ColonEquals extends OToken with Product with Serializable
  23. case object Comma extends OToken with Product with Serializable
  24. case object Dot extends OToken with Product with Serializable
  25. case object EOF extends OToken with Product with Serializable
  26. case object Empty extends OToken with Product with Serializable
  27. object FloatNum extends TagTokenMatcher[FloatNum] with Serializable
  28. object ImagNum extends TagTokenMatcher[FloatNum] with Serializable
  29. object Indent extends TagTokenMatcher[Indent] with Serializable
  30. object IntegerNum extends TagTokenMatcher[IntegerNum] with Serializable
  31. object Keyword extends TagTokenMatcher[Keyword] with Serializable
  32. case object LBrace extends OToken with Product with Serializable
  33. case object LBracket extends OToken with Product with Serializable
  34. case object LParen extends OToken with Product with Serializable
  35. case object Newline extends OToken with Product with Serializable
  36. object Num extends TagTokenMatcher[Num[Number]]
  37. object Operator extends TagTokenMatcher[Operator] with Serializable
  38. object Quote extends TagTokenMatcher[Quote] with Serializable
  39. case object RBrace extends OToken with Product with Serializable
  40. case object RBracket extends OToken with Product with Serializable
  41. case object RParen extends OToken with Product with Serializable
  42. case object Semicolon extends OToken with Product with Serializable
  43. case object Whitespace extends OToken with Product with Serializable
  44. object Word extends TagTokenMatcher[Word] with Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped