Uses of Class
simula.compiler.utilities.Token
Package
Description
Simula Compiler Parsing.
Simula Compiler Syntax Classes.
Simula Compiler Declarations.
Simula Compiler Statements.
-
Uses of Token in simula.compiler.parsing
Modifier and TypeFieldDescriptionstatic Token
Parse.currentToken
The current Token.static Token
Parse.prevToken
The previous Token.private static Token
Parse.savedToken
The saved Token used by 'pushBack'Modifier and TypeFieldDescriptionprivate LinkedList
<Token> SimulaScanner.tokenQueue
The Token queue.Modifier and TypeMethodDescriptionprivate Token
SimulaScanner.identifierToken
(String name) Scanner Utility: Create an identifier Token.private Token
SimulaScanner.javaKeyword
(String name) Scanner Utility: Create an Java-name Token.private Token
Create a new Token without a valueprivate Token
Create a new TokenDefaultScanner.nextToken()
Returns the next Token.SimulaScanner.nextToken()
private Token
SimulaScanner.scanBasic()
Scan basic Tokenprivate Token
SimulaScanner.scanCharacterConstant()
Scan and deliver a Character constant.private Token
SimulaScanner.scanComment()
Scan a Comment.private Token
SimulaScanner.scanCommentToEndOfLine()
Scan Comment to end-of-line.private Token
SimulaScanner.scanDigitsExp
(StringBuilder number) Scan exponent-part.private Token
SimulaScanner.scanDirectiveLine()
Scan a %Directive lineprivate Token
SimulaScanner.scanDotDigit
(StringBuilder number) Scan decimal-fraction possibly followed by an exponent-part.private Token
SimulaScanner.scanEndComment()
Scan end-comment.private Token
SimulaScanner.scanIdentifier()
Scan and return an identifier Token.private Token
SimulaScanner.scanNumber()
Scan a unsigned number.private Token
SimulaScanner.scanTextConstant()
Scan and deliver a Text constant.private Token
SimulaScanner.scanToken()
Scan and return a Token. -
Uses of Token in simula.compiler.syntaxClass
-
Uses of Token in simula.compiler.syntaxClass.declaration
Modifier and TypeMethodDescriptionprivate static File
ExternalDeclaration.findJarFile
(String identifier, Token externalIdentifier) Find the .jar file containing an external class or procedure. -
Uses of Token in simula.compiler.syntaxClass.statement
Modifier and TypeFieldDescriptionprivate final Token
ForStatement.assignmentOperator
Assignment operator := or :-