We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12d5dbc commit a347632Copy full SHA for a347632
src/dotty/tools/dotc/FromTasty.scala
@@ -16,6 +16,17 @@ import Decorators._
16
import dotty.tools.dotc.transform.Pickler
17
import pickling.DottyUnpickler
18
19
+/** Compiler for TASTY files.
20
+ * Usage:
21
+ *
22
+ * scala dotty.tools.dotc.FromTasty (option | classname)*
23
24
+ * Options are as for dotc.
25
+ * Classnames are fully qualified names of top-level classes that need to have a TASTY attribute.
26
+ * Example:
27
28
+ * scala dotty.tools.dotc.FromTasty -Xprint:front extMethods.T
29
+ */
30
object FromTasty extends Driver {
31
override def newCompiler(): Compiler = new TASTYCompiler
32
0 commit comments