object Lexer
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Lexer
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- sealed abstract class AToken[T <: Token] extends Token with TokenMatcher[T]
- final case class Comment(text: String) extends AToken[Comment] with Product with Serializable
- final case class FloatNum(floatValue: BigDecimal, syntax: String) extends Num[BigDecimal] with Product with Serializable
- final case class ImagNum(floatValue: BigDecimal, syntax: String) extends Num[BigDecimal] with Product with Serializable
- final case class Indent(amount: Int) extends AToken[Indent] with Product with Serializable
- final case class IntegerNum(intValue: BigInt, syntax: String) extends Num[BigInt] with Product with Serializable
- final case class Keyword(word: String) extends AToken[Keyword] with Product with Serializable
- sealed abstract class Num[T <: Number] extends AToken[Num[T]]
- sealed abstract class OToken extends Token with TokenMatcher[Token]
- final case class Operator(chars: String) extends AToken[Operator] with Product with Serializable
- final case class Quote(delimiter: String) extends AToken[Quote] with Product with Serializable
- abstract class TagTokenMatcher[T <: Token] extends TokenMatcher[T]
- sealed trait Token extends AnyRef
- trait TokenMatcher[T <: Token] extends AnyRef
- final case class Word(word: String) extends AToken[Word] with Product with Serializable
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def wordOrKeyword(str: String): Token
- case object Colon extends OToken with Product with Serializable
- case object ColonEquals extends OToken with Product with Serializable
- case object Comma extends OToken with Product with Serializable
- case object Dot extends OToken with Product with Serializable
- case object EOF extends OToken with Product with Serializable
- case object Empty extends OToken with Product with Serializable
- object FloatNum extends TagTokenMatcher[FloatNum] with Serializable
- object ImagNum extends TagTokenMatcher[FloatNum] with Serializable
- object Indent extends TagTokenMatcher[Indent] with Serializable
- object IntegerNum extends TagTokenMatcher[IntegerNum] with Serializable
- object Keyword extends TagTokenMatcher[Keyword] with Serializable
- case object LBrace extends OToken with Product with Serializable
- case object LBracket extends OToken with Product with Serializable
- case object LParen extends OToken with Product with Serializable
- case object Newline extends OToken with Product with Serializable
- object Num extends TagTokenMatcher[Num[Number]]
- object Operator extends TagTokenMatcher[Operator] with Serializable
- object Quote extends TagTokenMatcher[Quote] with Serializable
- case object RBrace extends OToken with Product with Serializable
- case object RBracket extends OToken with Product with Serializable
- case object RParen extends OToken with Product with Serializable
- case object Semicolon extends OToken with Product with Serializable
- case object Whitespace extends OToken with Product with Serializable
- object Word extends TagTokenMatcher[Word] with Serializable