@@ -595,10 +595,10 @@ object Build {
595
595
val asm = findArtifactPath(externalDeps, " scala-asm" )
596
596
val dottyCompiler = jars(" dotty-compiler" )
597
597
val dottyStaging = jars(" dotty-staging" )
598
- val dottyTastyConsumer = jars(" dotty-tasty-consumer " )
598
+ val dottyTastyInspector = jars(" dotty-tasty-inspector " )
599
599
val dottyInterfaces = jars(" dotty-interfaces" )
600
600
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)))
602
602
} else run(args)
603
603
},
604
604
@@ -672,10 +672,10 @@ object Build {
672
672
}
673
673
val dottyInterfaces = jars(" dotty-interfaces" )
674
674
val dottyStaging = jars(" dotty-staging" )
675
- val dottyTastyConsumer = jars(" dotty-tasty-consumer " )
675
+ val dottyTastyInspector = jars(" dotty-tasty-inspector " )
676
676
val tastyCore = jars(" tasty-core" )
677
677
val asm = findArtifactPath(externalDeps, " scala-asm" )
678
- extraClasspath ++= Seq (dottyCompiler, dottyInterfaces, asm, dottyStaging, dottyTastyConsumer , tastyCore)
678
+ extraClasspath ++= Seq (dottyCompiler, dottyInterfaces, asm, dottyStaging, dottyTastyInspector , tastyCore)
679
679
}
680
680
681
681
val fullArgs = main :: insertClasspathInArgs(args, extraClasspath.mkString(File .pathSeparator))
@@ -721,14 +721,14 @@ object Build {
721
721
val jars = packageAll.value
722
722
Seq (
723
723
" -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 " ),
725
725
)
726
726
},
727
727
packageAll := {
728
728
packageAll.in(`dotty-compiler`).value ++ Seq (
729
729
" dotty-compiler" -> packageBin.in(Compile ).value.getAbsolutePath,
730
730
" 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,
732
732
" tasty-core" -> packageBin.in(LocalProject (" tasty-core-bootstrapped" ), Compile ).value.getAbsolutePath,
733
733
)
734
734
}
@@ -807,10 +807,10 @@ object Build {
807
807
javaOptions := (javaOptions in `dotty-compiler-bootstrapped`).value
808
808
)
809
809
810
- lazy val `dotty-tasty-consumer ` = project.in(file(" tasty-consumer " )).
810
+ lazy val `dotty-tasty-inspector ` = project.in(file(" tasty-inspector " )).
811
811
withCommonSettings(Bootstrapped ).
812
812
// 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),
814
814
// but we always need it to be present on the JVM classpath at runtime.
815
815
dependsOn(dottyCompiler(Bootstrapped ) % " provided; compile->runtime; test->test" ).
816
816
settings(commonBootstrappedSettings).
@@ -1121,7 +1121,7 @@ object Build {
1121
1121
publishLocal in `dotty-library-bootstrapped`,
1122
1122
publishLocal in `tasty-core-bootstrapped`,
1123
1123
publishLocal in `dotty-staging`,
1124
- publishLocal in `dotty-tasty-consumer `,
1124
+ publishLocal in `dotty-tasty-inspector `,
1125
1125
publishLocal in `scala-library`,
1126
1126
publishLocal in `scala-reflect`,
1127
1127
publishLocal in `dotty-doc-bootstrapped`,
@@ -1332,7 +1332,7 @@ object Build {
1332
1332
def asDottyRoot (implicit mode : Mode ): Project = project.withCommonSettings.
1333
1333
aggregate(`dotty-interfaces`, dottyLibrary, dottyCompiler, tastyCore, dottyDoc, `dotty-sbt-bridge`).
1334
1334
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`).
1336
1336
dependsOn(tastyCore).
1337
1337
dependsOn(dottyCompiler).
1338
1338
dependsOn(dottyLibrary).
@@ -1371,7 +1371,7 @@ object Build {
1371
1371
def asDottyTastydoc (implicit mode : Mode ): Project = project.withCommonSettings.
1372
1372
aggregate(`dotty-tastydoc-input`).
1373
1373
dependsOn(dottyCompiler).
1374
- dependsOn(`dotty-tasty-consumer `).
1374
+ dependsOn(`dotty-tasty-inspector `).
1375
1375
settings(commonDocSettings)
1376
1376
1377
1377
def asDottyTastydocInput (implicit mode : Mode ): Project = project.withCommonSettings.
0 commit comments