aboutsummaryrefslogtreecommitdiff
path: root/compiler/src/dotty/tools/dotc/repl/CompilingInterpreter.scala
diff options
context:
space:
mode:
authorGuillaume Martres <smarter@ubuntu.com>2017-04-11 17:45:55 +0200
committerGitHub <noreply@github.com>2017-04-11 17:45:55 +0200
commit65dc7ad151a38158a45c5836d5e1f0fd48b8e396 (patch)
tree7d1e2c9d1f848525a7d406e6046559081e70f675 /compiler/src/dotty/tools/dotc/repl/CompilingInterpreter.scala
parentf13e3a43d227933ce644f2503f658ea436ea11b4 (diff)
parent223f32b7658a77fb2ad6b30ad247c0e27204b558 (diff)
downloaddotty-65dc7ad151a38158a45c5836d5e1f0fd48b8e396.tar.gz
dotty-65dc7ad151a38158a45c5836d5e1f0fd48b8e396.tar.bz2
dotty-65dc7ad151a38158a45c5836d5e1f0fd48b8e396.zip
Merge pull request #2191 from dotty-staging/sync-classpath-scalac
Fix #2186: Synchronize classpath handling with Scala 2.12
Diffstat (limited to 'compiler/src/dotty/tools/dotc/repl/CompilingInterpreter.scala')
-rw-r--r--compiler/src/dotty/tools/dotc/repl/CompilingInterpreter.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/src/dotty/tools/dotc/repl/CompilingInterpreter.scala b/compiler/src/dotty/tools/dotc/repl/CompilingInterpreter.scala
index 65c64f708..eed75fe88 100644
--- a/compiler/src/dotty/tools/dotc/repl/CompilingInterpreter.scala
+++ b/compiler/src/dotty/tools/dotc/repl/CompilingInterpreter.scala
@@ -138,7 +138,7 @@ class CompilingInterpreter(
private val prevRequests = new ArrayBuffer[Request]()
/** the compiler's classpath, as URL's */
- val compilerClasspath: List[URL] = ictx.platform.classPath(ictx).asURLs
+ val compilerClasspath: Seq[URL] = ictx.platform.classPath(ictx).asURLs
/* A single class loader is used for all commands interpreted by this Interpreter.
It would also be possible to create a new class loader for each command