File tree 1 file changed +3
-3
lines changed
docs/docs/reference/metaprogramming
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ libraryDependencies += "ch.epfl.lamp" %% "dotty-tasty-inspector" % scalaVersion.
9
9
10
10
TASTy files contain the full typed tree of a class including source positions
11
11
and documentation. This is ideal for tools that analyze or extract semantic
12
- information of the code. To avoid the hassle of working directly with the TASTy
12
+ information from the code. To avoid the hassle of working directly with the TASTy
13
13
file we provide the ` TastyInspector ` which loads the contents and exposes it
14
14
through the TASTy reflect API.
15
15
@@ -42,8 +42,8 @@ object Test {
42
42
}
43
43
```
44
44
45
- Note that if we need to run the main (in an object called ` Test ` ) after
46
- compilation we need make available the compiler to the runtime:
45
+ Note that if we need to run the main (in the example below defined in an object called ` Test ` ) after
46
+ compilation we need to make the compiler available to the runtime:
47
47
48
48
``` shell
49
49
dotc -d out Test.scala
You can’t perform that action at this time.
0 commit comments