public final class GoloCompiler extends java.lang.Object
Instances of this class may be reused to compile several sources.
Several methods are made public while they do not necessarily need so for the needs of the Golo compiler. Such deviations from a "good and clean" design are on-purpose, as this facilitates the implementation of Golo support in IDEs.
Constructor and Description |
---|
GoloCompiler() |
GoloCompiler(java.lang.ClassLoader loader) |
Modifier and Type | Method and Description |
---|---|
GoloModule |
check(ASTCompilationUnit compilationUnit)
Checks that the source code is minimally sound by converting a parse tree to an intermediate representation, and
running a few classic visitors over it.
|
java.util.List<CodeGenerationResult> |
compile(java.io.File src) |
java.util.List<CodeGenerationResult> |
compile(java.lang.String goloSourceFilename,
java.io.Reader sourceCode)
Compiles a Golo source file from an input stream, and returns a collection of results.
|
GoloModule |
expand(GoloModule goloModule) |
GoloModule |
expand(GoloModule goloModule,
boolean recurse) |
GoloModule |
expandOnce(GoloModule goloModule) |
java.util.List<CodeGenerationResult> |
generate(GoloModule goloModule) |
java.util.List<GoloCompilationException.Problem> |
getProblems()
Returns the list of problems encountered during the last compilation.
|
GoloParser |
initParser(java.io.Reader sourceReader)
Initializes a parser from a reader.
|
ASTCompilationUnit |
parse(java.io.File goloSourceFile) |
ASTCompilationUnit |
parse(java.lang.String goloSourceFilename,
GoloParser parser)
Produces a parse tree for a Golo source file.
|
GoloModule |
refine(GoloModule goloModule) |
void |
resetExceptionBuilder() |
void |
setExceptionBuilder(GoloCompilationException.Builder builder)
Initializes an ExceptionBuilder to collect errors instead of throwing immediately.
|
GoloModule |
transform(ASTCompilationUnit compilationUnit) |
public GoloCompiler()
public GoloCompiler(java.lang.ClassLoader loader)
public void setExceptionBuilder(GoloCompilationException.Builder builder)
builder
- the exception builder to add problems into.public void resetExceptionBuilder()
public GoloParser initParser(java.io.Reader sourceReader)
sourceReader
- the source code reader.public java.util.List<CodeGenerationResult> compile(java.lang.String goloSourceFilename, java.io.Reader sourceCode) throws GoloCompilationException
goloSourceFilename
- the source file name.sourceCode
- the source code reader.GoloCompilationException
- if a problem occurs during any phase of the compilation work.public java.util.List<CodeGenerationResult> compile(java.io.File src) throws java.io.IOException
java.io.IOException
public java.util.List<GoloCompilationException.Problem> getProblems()
public ASTCompilationUnit parse(java.lang.String goloSourceFilename, GoloParser parser) throws GoloCompilationException
goloSourceFilename
- the source file name.parser
- the parser to use.GoloCompilationException
- if the parser encounters an error.public ASTCompilationUnit parse(java.io.File goloSourceFile) throws GoloCompilationException, java.io.IOException
GoloCompilationException
java.io.IOException
public GoloModule check(ASTCompilationUnit compilationUnit)
compilationUnit
- the source parse tree.GoloCompilationException
- if an error exists in the source represented by the input parse tree.public java.util.List<CodeGenerationResult> generate(GoloModule goloModule)
public GoloModule transform(ASTCompilationUnit compilationUnit)
public GoloModule expand(GoloModule goloModule, boolean recurse)
public GoloModule expand(GoloModule goloModule)
public GoloModule expandOnce(GoloModule goloModule)
public GoloModule refine(GoloModule goloModule)