Main
Members list
Value members
Concrete methods
Actual entrypoint from SBT.
Actual entrypoint from SBT.
Internal SBT code for sbt doc
locates this precise method with reflection, and passes to us both args
and rootCtx
. "Internal" here means that it's painful to modify this code with a plugin.
args
contains arguments both for us and for the compiler (see code on how they're split).
Attributes
- Definition Classes
-
Driver
Inherited methods
Entry point to the compiler with no optional arguments.
Entry point to the compiler with no optional arguments.
This overload is provided for compatibility reasons: the RawCompiler
of sbt expects this method to exist and calls it using reflection. Keeping it means that we can change the other overloads without worrying about breaking compatibility with sbt.
Attributes
- Inherited from:
- Driver
Principal entry point to the compiler.
Principal entry point to the compiler.
Usage example: https://github.com/lampepfl/dotty/tree/master/compiler/test/dotty/tools/dotc/EntryPointsTest.scala.disabled in method runCompiler
Value parameters
- args
-
Arguments to pass to the compiler.
- callback
-
Used to execute custom code during the compilation process. No callbacks will be executed if this is
null
. - reporter
-
Used to log errors, warnings, and info messages. The default reporter is used if this is
null
.
Attributes
- Returns
-
The
Reporter
used. UseReporter#hasErrors
to check if compilation succeeded. - Inherited from:
- Driver
Entry point to the compiler that can be conveniently used with Java reflection.
Entry point to the compiler that can be conveniently used with Java reflection.
This entry point can easily be used without depending on the dotty
package, you only need to depend on dotty-interfaces
and call this method using reflection. This allows you to write code that will work against multiple versions of dotty without recompilation.
The trade-off is that you can only pass a SimpleReporter to this method and not a normal Reporter which is more powerful.
Usage example: https://github.com/lampepfl/dotty/tree/master/compiler/test/dotty/tools/dotc/InterfaceEntryPointTest.scala
Value parameters
- args
-
Arguments to pass to the compiler.
- callback
-
Used to execute custom code during the compilation process. No callbacks will be executed if this is
null
. - simple
-
Used to log errors, warnings, and info messages. The default reporter is used if this is
null
.
Attributes
- Inherited from:
- Driver
Setup context with initialized settings from CLI arguments, then check if there are any settings that would change the default behaviour of the compiler.
Setup context with initialized settings from CLI arguments, then check if there are any settings that would change the default behaviour of the compiler.
Attributes
- Returns
-
If there is no setting like
-help
preventing us from continuing compilation, this method returns a list of files to compile and an updated Context. If compilation should be interrupted, this method returns None. - Inherited from:
- Driver