@@ -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
@@ -240,6 +241,12 @@ class tests extends CompilerTest {
240
241
" TypeApplications.scala" , " TypeComparer.scala" , " TypeErasure.scala" , " TypeOps.scala" ,
241
242
" TyperState.scala" , " Uniques.scala"
242
243
) map (coreDir + _), testPickling)
244
+ @ Test def tasty_typer = compileList(" tasty_typer" , List (
245
+ " Applications.scala" , " Checking.scala" , " ConstFold.scala" , " ErrorReporting.scala" ,
246
+ " EtaExpansion.scala" , " FrontEnd.scala" , " Implicits.scala" , " ImportInfo.scala" ,
247
+ " Inferencing.scala" , " Mode.scala" , " ProtoTypes.scala" , " ReTyper.scala" , " RefChecks.scala" ,
248
+ " TypeAssigner.scala" , " Typer.scala" , " VarianceChecker.scala" , " Variances.scala"
249
+ ) map (typerDir + _), testPickling)
243
250
@ Test def tasty_tasty = compileDir(coreDir, " tasty" , testPickling)
244
251
@ Test def tasty_classfile = compileDir(coreDir, " classfile" , testPickling)
245
252
@ Test def tasty_unpickleScala2 = compileDir(coreDir, " unpickleScala2" , testPickling)
0 commit comments