Compiler
class Compiler(var lexer: Lexer, val parserWrapper: ParserWrapper, val visitor: ParseTreeVisitor<AstObject>, val analyzer: Analyzer?)
Used to simulate the behaviour of a compiler
Constructors
Link copied to clipboard
constructor(lexer: Lexer, parserWrapper: ParserWrapper, visitor: ParseTreeVisitor<AstObject>, analyzer: Analyzer?)