Package compilation.analysis.lexical
Contains classes for the lexical analysis of the source code.
The classes contained within this package are used for performing lexical analysis on the source code, using the Lexer to generate a List of Tokens made up of the characters within the initial input String.
- Since:
- 1.0
-
Class Summary Class Description Lexer The Lexer class is responsible for performing lexical analysis on a string of text, identifying each character one by one.Syntax The Syntax class is used to hold constant String variables that identify valid Onyx syntax.Token The Token class is used to store information about characters in the form of a Token.