File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
docs/docs/reference/metaprogramming Expand file tree Collapse file tree 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.
99
1010TASTy files contain the full typed tree of a class including source positions
1111and 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
1313file we provide the ` TastyInspector ` which loads the contents and exposes it
1414through the TASTy reflect API.
1515
@@ -42,8 +42,8 @@ object Test {
4242}
4343```
4444
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:
4747
4848``` shell
4949dotc -d out Test.scala
You can’t perform that action at this time.
0 commit comments