The central class of the dotc compiler.
Run the Dotty compiler.
A compiler which stays resident between runs.
A compiler which stays resident between runs. This is more of a PoC than something that's expected to be used often
Usage:
> scala dotty.tools.dotc.Resident <options> <initial files>
dotc> "more options and files to compile"
...
dotc> :reset // reset all options to the ones passed on the command line
...
dotc> :q // quit
A compiler run.
A compiler run. Exports various methods to compile source files
A main class for running compiler benchmarks.
A main class for running compiler benchmarks. Can instantiate a given number of compilers and run each (sequentially) a given number of times on the same sources.
Compiler for TASTY files.
Compiler for TASTY files. Usage:
scala dotty.tools.dotc.FromTasty (option | classname)*
Options are as for dotc. Classnames are fully qualified names of top-level classes that need to have a TASTY attribute. Example:
scala dotty.tools.dotc.FromTasty -Xprint:front extMethods.T
Main class of the dotc
batch compiler.
The central class of the dotc compiler. The job of a compiler is to create runs, which process given
phases
in a givenrootContext
.