Uses of Package
slogo.parser.token

Packages that use slogo.parser.token
slogo.expression   
slogo.instruction   
slogo.language   
slogo.parser This package is responsible for parsing the language SLogo. 
slogo.parser.token   
 

Classes in slogo.parser.token used by slogo.expression
IdentifierToken
          Represents an identifier (a variable name)
 

Classes in slogo.parser.token used by slogo.instruction
IdentifierToken
          Represents an identifier (a variable name)
 

Classes in slogo.parser.token used by slogo.language
IdentifierToken
          Represents an identifier (a variable name)
 

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

Classes in slogo.parser.token used by slogo.parser.token
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.
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