aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/config/Platform.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/dotty/tools/dotc/config/Platform.scala')
-rw-r--r--src/dotty/tools/dotc/config/Platform.scala5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/dotty/tools/dotc/config/Platform.scala b/src/dotty/tools/dotc/config/Platform.scala
index 0385d80c5..19bdf00b1 100644
--- a/src/dotty/tools/dotc/config/Platform.scala
+++ b/src/dotty/tools/dotc/config/Platform.scala
@@ -9,15 +9,14 @@ package config
import io.{ClassPath, AbstractFile}
import core.Contexts._, core.Symbols._
-import core.SymDenotations.ClassCompleter
import core.SymbolLoader
/** The platform dependent pieces of Global.
*/
-abstract class Platform(base: ContextBase) {
+abstract class Platform {
/** The root symbol loader. */
- def rootLoader: ClassCompleter
+ def rootLoader(implicit ctx: Context): SymbolLoader
/** The compiler classpath. */
def classPath(implicit ctx: Context): ClassPath