Uses of Package
slogo.jelan.parser.tokens

Packages that use slogo.jelan.parser.tokens
slogo.jelan.expressions   
slogo.jelan.parser This package is responsible for parsing the language Elan. 
slogo.jelan.parser.tokens   
 

Classes in slogo.jelan.parser.tokens used by slogo.jelan.expressions
IdentifierToken
          Represents an identifier (a variable name)
 

Classes in slogo.jelan.parser.tokens used by slogo.jelan.parser
Token
          currently this is a flag interface
 

Classes in slogo.jelan.parser.tokens used by slogo.jelan.parser.tokens
CharToken
          A token represented by a single character, e.g., '*', ';', '[' and so on; the method equals compares a CharToken as equal to another CharToken encapsulating the same character.
EOFToken
          This represents an end-of-file token Uses the singleton pattern since there's no reason to have more than one such token.
EOLToken
          This represents an end-of-line token Uses the singleton pattern since there's no reason to have more than one such token.
IdentifierToken
          Represents an identifier (a variable name)
NumberToken
          Represents a number (using doublevalues).
ReservedToken
          Represents a reserved word
Token
          currently this is a flag interface
VariableToken
          Represents a variable