Uses of Class
edu.iu.cnets.klatsch.parser.Token

Packages that use Token
edu.iu.cnets.klatsch.parser   
 

Uses of Token in edu.iu.cnets.klatsch.parser
 

Fields in edu.iu.cnets.klatsch.parser declared as Token
(package private)  Token TokenStream.peek
          a buffered token to peek at, for ease of parsing
 

Methods in edu.iu.cnets.klatsch.parser that return Token
(package private)  Token TokenStream.get()
          Returns the next token in the stream.
(package private)  Token TokenStream.peek()
          Returns the next token in the stream without actually advancing the pointer within the buffer.
private  Token TokenStream.readToken()
          Reads the next token from the buffer and returns it.
(package private)  Token TokenStream.require(Token.Type type)
          Reads the next token in the stream, which must match the given type to avoid causing an error.
(package private)  Token TokenStream.requireKeyword(java.lang.String keyword)
          Reads the next token in the stream, which must be a keyword of the given type to avoid causing an error.