- IdentifierParser - Class in slogo.parser
-
Parse an assignment statement, which looks like
<id> <assignment_token, i.e., = > <expression>
- IdentifierParser() - Constructor for class slogo.parser.IdentifierParser
-
- IdentifierToken - Class in slogo.parser.token
-
Represents an identifier (a variable name)
- IdentifierToken() - Constructor for class slogo.parser.token.IdentifierToken
-
- IdentifierToken(String) - Constructor for class slogo.parser.token.IdentifierToken
-
- Instruction - Class in slogo.instruction
-
Represents an instruction in the SLogo language
- Instruction() - Constructor for class slogo.instruction.Instruction
-
- InstructionNames - Class in slogo.parser
-
Reads the file of instruction names.
- InstructionNames() - Constructor for class slogo.parser.InstructionNames
-
- InstructionParser - Class in slogo.parser
-
Instruction Parser - calls appropriate Parser for each Instruction
- interpret(Reader) - Method in class slogo.SLogoInterpreter
-
interprets the contents of the Reader: parsing
expression(s) and prints the result of evaluating the expression(s).
- iterator() - Method in class slogo.instruction.StrictInstructionList
-
Return an iterator for accessing all the instructions.