scala.util.parsing.syntax

trait StdTokens

[source: scala/util/parsing/syntax/StdTokens.scala]

trait StdTokens
extends Tokens
This component provides the standard `Token's for a simple, Scala-like language.
Author
Martin Odersky, Adriaan Moors
Direct Known Subclasses:
StdLexical, StdLexical

Methods inherited from Tokens
errorToken
Methods inherited from AnyRef
getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized
Methods inherited from Any
==, !=, isInstanceOf, asInstanceOf
Class Summary
case class Identifier (val chars : java.lang.String) extends Token with Product
The class of identifier tokens
case class Keyword (val chars : java.lang.String) extends Token with Product
The class of keyword tokens
case class NumericLit (val chars : java.lang.String) extends Token with Product
The class of numeric literal tokens
case class StringLit (val chars : java.lang.String) extends Token with Product
The class of string literal tokens