class compiler::Compiler
sys::Obj compiler::Compiler
Compiler manages the top level process of the compiler pipeline. There are a couple different "pipelines" used to accomplish various twists on compiling Fantom code (from memory, files, etc). The pipelines are implemented as discrete CompilerSteps. As the steps are executed, the Compiler instance itself stores the state as we move from files -> ast -> resolved ast -> code.
Error reporting is managed via the Compiler.errors list. If the compiler encounters problems it accumulates the errors as CompileExceptions in this list, then raises the first exception to the caller. All errors go thru the CompilerSupport.err() methods for logging. To log an error and continue we simply call err(). To fail fast, we code something like: throw err(). Or at the end of a step we may call bombIfErr() which throws the first exception if any errors have accumulated.
- backend
-
virtual Void backend()
Execute back-end compiler pipeline
- cjs
-
Str? cjs
- cjsSourceMap
-
Str? cjsSourceMap
- closures
-
ClosureExpr[]? closures
- compile
-
virtual CompilerOutput compile()
Compile fan source code from the configured CompilerInput into a fan pod and return the resulting CompilerOutput.
- depends
-
CDepend[] depends
- errs
-
CompilerErr[] errs
- esm
-
Str? esm
- fpod
-
FPod? fpod
- frontend
-
virtual Void frontend()
Execute front-end compiler pipeline
- input
-
CompilerInput input
- isSys
-
Bool isSys := false
- js
-
Str? js
- jsFiles
-
File[]? jsFiles
- jsPod
-
Obj? jsPod
- jsPropsFiles
-
File[]? jsPropsFiles
- jsSourceMap
-
Str? jsSourceMap
- localeDefs
-
LocaleLiteralExpr[] localeDefs
- localeProps
-
Str? localeProps
- log
-
CompilerLog log
- make
-
new make(CompilerInput input)
Construct with reasonable defaults
- ns
-
CNamespace? ns
- output
-
CompilerOutput? output
- pod
-
PodDef? pod
- resFiles
-
File[]? resFiles
- srcFiles
-
File[]? srcFiles
- tsDecl
-
Str? tsDecl
- types
-
TypeDef[]? types
- warns
-
CompilerErr[] warns
- wrappers