@@ -595,10 +595,10 @@ object Build {
595595 val asm = findArtifactPath(externalDeps, " scala-asm" )
596596 val dottyCompiler = jars(" dotty-compiler" )
597597 val dottyStaging = jars(" dotty-staging" )
598- val dottyTastyConsumer = jars(" dotty-tasty-consumer " )
598+ val dottyTastyInspector = jars(" dotty-tasty-inspector " )
599599 val dottyInterfaces = jars(" dotty-interfaces" )
600600 val tastyCore = jars(" tasty-core" )
601- run(insertClasspathInArgs(args1, List (dottyCompiler, dottyInterfaces, asm, dottyStaging, dottyTastyConsumer , tastyCore).mkString(File .pathSeparator)))
601+ run(insertClasspathInArgs(args1, List (dottyCompiler, dottyInterfaces, asm, dottyStaging, dottyTastyInspector , tastyCore).mkString(File .pathSeparator)))
602602 } else run(args)
603603 },
604604
@@ -672,10 +672,10 @@ object Build {
672672 }
673673 val dottyInterfaces = jars(" dotty-interfaces" )
674674 val dottyStaging = jars(" dotty-staging" )
675- val dottyTastyConsumer = jars(" dotty-tasty-consumer " )
675+ val dottyTastyInspector = jars(" dotty-tasty-inspector " )
676676 val tastyCore = jars(" tasty-core" )
677677 val asm = findArtifactPath(externalDeps, " scala-asm" )
678- extraClasspath ++= Seq (dottyCompiler, dottyInterfaces, asm, dottyStaging, dottyTastyConsumer , tastyCore)
678+ extraClasspath ++= Seq (dottyCompiler, dottyInterfaces, asm, dottyStaging, dottyTastyInspector , tastyCore)
679679 }
680680
681681 val fullArgs = main :: insertClasspathInArgs(args, extraClasspath.mkString(File .pathSeparator))
@@ -721,14 +721,14 @@ object Build {
721721 val jars = packageAll.value
722722 Seq (
723723 " -Ddotty.tests.classes.dottyStaging=" + jars(" dotty-staging" ),
724- " -Ddotty.tests.classes.dottyTastyConsumer =" + jars(" dotty-tasty-consumer " ),
724+ " -Ddotty.tests.classes.dottyTastyInspector =" + jars(" dotty-tasty-inspector " ),
725725 )
726726 },
727727 packageAll := {
728728 packageAll.in(`dotty-compiler`).value ++ Seq (
729729 " dotty-compiler" -> packageBin.in(Compile ).value.getAbsolutePath,
730730 " dotty-staging" -> packageBin.in(LocalProject (" dotty-staging" ), Compile ).value.getAbsolutePath,
731- " dotty-tasty-consumer " -> packageBin.in(LocalProject (" dotty-tasty-consumer " ), Compile ).value.getAbsolutePath,
731+ " dotty-tasty-inspector " -> packageBin.in(LocalProject (" dotty-tasty-inspector " ), Compile ).value.getAbsolutePath,
732732 " tasty-core" -> packageBin.in(LocalProject (" tasty-core-bootstrapped" ), Compile ).value.getAbsolutePath,
733733 )
734734 }
@@ -807,10 +807,10 @@ object Build {
807807 javaOptions := (javaOptions in `dotty-compiler-bootstrapped`).value
808808 )
809809
810- lazy val `dotty-tasty-consumer ` = project.in(file(" tasty-consumer " )).
810+ lazy val `dotty-tasty-inspector ` = project.in(file(" tasty-inspector " )).
811811 withCommonSettings(Bootstrapped ).
812812 // We want the compiler to be present in the compiler classpath when compiling this project but not
813- // when compiling a project that depends on dotty-tasty-consumer (see sbt-dotty/sbt-test/sbt-dotty/tasty-consumer -example-project),
813+ // when compiling a project that depends on dotty-tasty-inspector (see sbt-dotty/sbt-test/sbt-dotty/tasty-inspector -example-project),
814814 // but we always need it to be present on the JVM classpath at runtime.
815815 dependsOn(dottyCompiler(Bootstrapped ) % " provided; compile->runtime; test->test" ).
816816 settings(commonBootstrappedSettings).
@@ -1121,7 +1121,7 @@ object Build {
11211121 publishLocal in `dotty-library-bootstrapped`,
11221122 publishLocal in `tasty-core-bootstrapped`,
11231123 publishLocal in `dotty-staging`,
1124- publishLocal in `dotty-tasty-consumer `,
1124+ publishLocal in `dotty-tasty-inspector `,
11251125 publishLocal in `scala-library`,
11261126 publishLocal in `scala-reflect`,
11271127 publishLocal in `dotty-doc-bootstrapped`,
@@ -1332,7 +1332,7 @@ object Build {
13321332 def asDottyRoot (implicit mode : Mode ): Project = project.withCommonSettings.
13331333 aggregate(`dotty-interfaces`, dottyLibrary, dottyCompiler, tastyCore, dottyDoc, `dotty-sbt-bridge`).
13341334 bootstrappedAggregate(`scala-library`, `scala-compiler`, `scala-reflect`, scalap,
1335- `dotty-language-server`, `dotty-staging`, `dotty-tasty-consumer `, `dotty-tastydoc`).
1335+ `dotty-language-server`, `dotty-staging`, `dotty-tasty-inspector `, `dotty-tastydoc`).
13361336 dependsOn(tastyCore).
13371337 dependsOn(dottyCompiler).
13381338 dependsOn(dottyLibrary).
@@ -1371,7 +1371,7 @@ object Build {
13711371 def asDottyTastydoc (implicit mode : Mode ): Project = project.withCommonSettings.
13721372 aggregate(`dotty-tastydoc-input`).
13731373 dependsOn(dottyCompiler).
1374- dependsOn(`dotty-tasty-consumer `).
1374+ dependsOn(`dotty-tasty-inspector `).
13751375 settings(commonDocSettings)
13761376
13771377 def asDottyTastydocInput (implicit mode : Mode ): Project = project.withCommonSettings.
0 commit comments