summaryrefslogtreecommitdiff
path: root/test/junit/scala/tools/nsc/symtab/SymbolTableForUnitTesting.scala
diff options
context:
space:
mode:
authorLukas Rytz <lukas.rytz@gmail.com>2016-03-22 21:26:35 +0100
committerLukas Rytz <lukas.rytz@gmail.com>2016-03-22 21:46:51 +0100
commitf8950c1457955835f4411beb8dcb3672f7cd39bd (patch)
treeee7b309b133ca04b2acf0d53533641e939cee75b /test/junit/scala/tools/nsc/symtab/SymbolTableForUnitTesting.scala
parent6cb50acfb5ee4df342e83d8505116d4607f45d1c (diff)
downloadscala-f8950c1457955835f4411beb8dcb3672f7cd39bd.tar.gz
scala-f8950c1457955835f4411beb8dcb3672f7cd39bd.tar.bz2
scala-f8950c1457955835f4411beb8dcb3672f7cd39bd.zip
Support :require when using the flat classpath representation.
:require was re-incarnated in https://github.com/scala/scala/pull/4051, it seems to be used by the spark repl. This commit makes it work when using the flat classpath representation.
Diffstat (limited to 'test/junit/scala/tools/nsc/symtab/SymbolTableForUnitTesting.scala')
-rw-r--r--test/junit/scala/tools/nsc/symtab/SymbolTableForUnitTesting.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/junit/scala/tools/nsc/symtab/SymbolTableForUnitTesting.scala b/test/junit/scala/tools/nsc/symtab/SymbolTableForUnitTesting.scala
index 365901c4d6..812c298c48 100644
--- a/test/junit/scala/tools/nsc/symtab/SymbolTableForUnitTesting.scala
+++ b/test/junit/scala/tools/nsc/symtab/SymbolTableForUnitTesting.scala
@@ -2,12 +2,12 @@ package scala.tools.nsc
package symtab
import scala.reflect.ClassTag
-import scala.reflect.internal.{Phase, NoPhase, SomePhase}
+import scala.reflect.internal.{NoPhase, Phase, SomePhase}
import scala.tools.nsc.classpath.FlatClassPath
import scala.tools.nsc.settings.ClassPathRepresentationType
import scala.tools.util.FlatClassPathResolver
import scala.tools.util.PathResolver
-import util.ClassPath
+import util.{ClassFileLookup, ClassPath}
import io.AbstractFile
/**
@@ -54,7 +54,7 @@ class SymbolTableForUnitTesting extends SymbolTable {
def isMaybeBoxed(sym: Symbol): Boolean = ???
def needCompile(bin: AbstractFile, src: AbstractFile): Boolean = ???
def externalEquals: Symbol = ???
- def updateClassPath(subst: Map[ClassPath[AbstractFile], ClassPath[AbstractFile]]): Unit = ???
+ def updateClassPath(subst: Map[ClassFileLookup[AbstractFile], ClassFileLookup[AbstractFile]]): Unit = ???
}
object loaders extends symtab.SymbolLoaders {