@@ -51,6 +51,7 @@ class tests extends CompilerTest {
51
51
val toolsDir = dottyDir + " tools/"
52
52
val dotcDir = toolsDir + " dotc/"
53
53
val coreDir = dotcDir + " core/"
54
+ val typerDir = dotcDir + " typer/"
54
55
55
56
@ Test def pickle_pickleOK = compileDir(testsDir, " pickling" , testPickling)
56
57
// This directory doesn't exist anymore
@@ -244,6 +245,12 @@ class tests extends CompilerTest {
244
245
" TypeApplications.scala" , " TypeComparer.scala" , " TypeErasure.scala" , " TypeOps.scala" ,
245
246
" TyperState.scala" , " Uniques.scala"
246
247
) map (coreDir + _), testPickling)
248
+ @ Test def tasty_typer = compileList(" tasty_typer" , List (
249
+ " Applications.scala" , " Checking.scala" , " ConstFold.scala" , " ErrorReporting.scala" ,
250
+ " EtaExpansion.scala" , " FrontEnd.scala" , " Implicits.scala" , " ImportInfo.scala" ,
251
+ " Inferencing.scala" , " Mode.scala" , " ProtoTypes.scala" , " ReTyper.scala" , " RefChecks.scala" ,
252
+ " TypeAssigner.scala" , " Typer.scala" , " VarianceChecker.scala" , " Variances.scala"
253
+ ) map (typerDir + _), testPickling)
247
254
@ Test def tasty_tasty = compileDir(coreDir, " tasty" , testPickling)
248
255
@ Test def tasty_classfile = compileDir(coreDir, " classfile" , testPickling)
249
256
@ Test def tasty_unpickleScala2 = compileDir(coreDir, " unpickleScala2" , testPickling)
0 commit comments