trait StdTokens extends Tokens
This component provides the standard Token
s for a simple, Scala-like language.
- Source
- StdTokens.scala
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- StdTokens
- Tokens
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
-
case class
Identifier(chars: String) extends Token with Product with Serializable
The class of identifier tokens
-
case class
Keyword(chars: String) extends Token with Product with Serializable
The class of keyword tokens
-
case class
NumericLit(chars: String) extends Token with Product with Serializable
The class of numeric literal tokens
-
case class
StringLit(chars: String) extends Token with Product with Serializable
The class of string literal tokens
-
case class
ErrorToken(msg: String) extends Token with Product with Serializable
A class of error tokens.
A class of error tokens. Error tokens are used to communicate errors detected during lexical analysis
- Definition Classes
- Tokens
-
abstract
class
Token extends AnyRef
Objects of this type are produced by a lexical parser or
scanner, and consumed by a parser.
Objects of this type are produced by a lexical parser or
scanner, and consumed by a parser.
- Definition Classes
- Tokens
- See also
Value Members
-
def
errorToken(msg: String): Token
This token is produced by a scanner
Scanner
when scanning failed.This token is produced by a scanner
Scanner
when scanning failed.- Definition Classes
- Tokens
-
object
EOF extends Token with Product with Serializable
A class for end-of-file tokens
A class for end-of-file tokens
- Definition Classes
- Tokens