TASTy Inspection
TASTy files contain the full typed tree of a class including source positions and documentation. This is ideal for tools that analyze or extract semantic information from the code.
To avoid the hassle of working directly with the TASTy file we provide the Inspector
which loads the contents and exposes it through the TASTy reflect API.
We also showcase TASTyViz, a visualiser for tasty, useful for debugging and checking your understanding of TASTy
TASTyViz
TASTyViz is a tool to inspect TASTy files visually. At the time of writing, it is still in the early stages of developement, therefore you can expect missing functionality and less-than-ideal user experience, but it could still prove useful when debugging. You can check it out here.
Inspector
Inspector
is a tool which provides API access to TASTy.
You can add the depency to your sbt build like so:
libraryDependencies += "org.scala-lang" %% "scala3-tasty-inspector" % scalaVersion.value
To inspect the trees of a TASTy file a consumer can be defined in the following way.
import scala.quoted.*
import scala.tasty.inspector.*
class MyInspector extends Inspector:
def inspect(using Quotes)(tastys: List[Tasty[quotes.type]]): Unit =
import quotes.reflect.*
for tasty <- tastys do
val tree = tasty.ast
// Do something with the tree
Then the consumer can be instantiated with the following code to get the tree of the foo/Bar.tasty
file.
object Test:
def main(args: Array[String]): Unit =
val tastyFiles = List("foo/Bar.tasty")
TastyInspector.inspectTastyFiles(tastyFiles)(new MyInspector)
Note that if we need to run the main (in the example below defined in an object called Test
) after compilation we need to make the compiler available to the runtime:
scalac -d out Test.scala
scala -with-compiler -classpath out Test
Template project
Using sbt version 1.1.5+
, do:
sbt new scala/scala3-tasty-inspector.g8
in the folder where you want to clone the template.