aboutsummaryrefslogtreecommitdiff
path: root/compiler/src/dotty/tools/dotc/config/Platform.scala
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2016-11-02 11:08:28 +0100
committerGuillaume Martres <smarter@ubuntu.com>2016-11-22 01:35:07 +0100
commit8a61ff432543a29234193cd1f7c14abd3f3d31a0 (patch)
treea8147561d307af862c295cfc8100d271063bb0dd /compiler/src/dotty/tools/dotc/config/Platform.scala
parent6a455fe6da5ff9c741d91279a2dc6fe2fb1b472f (diff)
downloaddotty-8a61ff432543a29234193cd1f7c14abd3f3d31a0.tar.gz
dotty-8a61ff432543a29234193cd1f7c14abd3f3d31a0.tar.bz2
dotty-8a61ff432543a29234193cd1f7c14abd3f3d31a0.zip
Move compiler and compiler tests to compiler dir
Diffstat (limited to 'compiler/src/dotty/tools/dotc/config/Platform.scala')
-rw-r--r--compiler/src/dotty/tools/dotc/config/Platform.scala39
1 files changed, 39 insertions, 0 deletions
diff --git a/compiler/src/dotty/tools/dotc/config/Platform.scala b/compiler/src/dotty/tools/dotc/config/Platform.scala
new file mode 100644
index 000000000..062d9002d
--- /dev/null
+++ b/compiler/src/dotty/tools/dotc/config/Platform.scala
@@ -0,0 +1,39 @@
+/* NSC -- new Scala compiler
+ * Copyright 2005-2012 LAMP/EPFL
+ * @author Paul Phillips
+ */
+
+package dotty.tools
+package dotc
+package config
+
+import io.{ClassPath, AbstractFile}
+import core.Contexts._, core.Symbols._
+import core.SymbolLoader
+
+/** The platform dependent pieces of Global.
+ */
+abstract class Platform {
+
+ /** The root symbol loader. */
+ def rootLoader(root: TermSymbol)(implicit ctx: Context): SymbolLoader
+
+ /** The compiler classpath. */
+ def classPath(implicit ctx: Context): ClassPath
+
+ /** Update classpath with a substitution that maps entries to entries */
+ def updateClassPath(subst: Map[ClassPath, ClassPath]): Unit
+
+ /** Any platform-specific phases. */
+ //def platformPhases: List[SubComponent]
+
+ /** Is the SAMType `cls` also a SAM under the rules of the platform? */
+ def isSam(cls: ClassSymbol)(implicit ctx: Context): Boolean
+
+ /** The various ways a boxed primitive might materialize at runtime. */
+ def isMaybeBoxed(sym: ClassSymbol)(implicit ctx: Context): Boolean
+
+ /** Create a new class loader to load class file `bin` */
+ def newClassLoader(bin: AbstractFile)(implicit ctx: Context): SymbolLoader
+}
+