C# Class Boo.Lang.Parser.BooParsingStep

Step 1. Parses any input fed to the compiler. Parsing behaviour can be customized by providing a specific ParserSettings instance through CompilerParameters.Environment.
Inheritance: ICompilerStep
Datei anzeigen Open project: boo/boo-lang Class Usage Examples

Public Methods

Method Description
BooParsingStep ( ) : System
Dispose ( ) : void
Initialize ( CompilerContext context ) : void
Run ( ) : void

Protected Methods

Method Description
ParseModule ( string inputName, System reader, ParserErrorHandler errorHandler ) : void

Private Methods

Method Description
OnParserError ( antlr error ) : void
ParserError ( LexicalInfo data, antlr error ) : void

Method Details

BooParsingStep() public method

public BooParsingStep ( ) : System
return System

Dispose() public method

public Dispose ( ) : void
return void

Initialize() public method

public Initialize ( CompilerContext context ) : void
context Boo.Lang.Compiler.CompilerContext
return void

ParseModule() protected method

protected ParseModule ( string inputName, System reader, ParserErrorHandler errorHandler ) : void
inputName string
reader System
errorHandler ParserErrorHandler
return void

Run() public method

public Run ( ) : void
return void