aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/Compiler.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2013-08-12 16:24:43 +0200
committerMartin Odersky <odersky@gmail.com>2013-08-12 16:24:43 +0200
commit34317c162e9d79729e57d22bb167f420e948da8f (patch)
tree6a3ff884020f14e7507f45de9d88240cf687ea2d /src/dotty/tools/dotc/Compiler.scala
parent775b2a1857290f5e83036148dbbfcdc3a29a12d2 (diff)
downloaddotty-34317c162e9d79729e57d22bb167f420e948da8f.tar.gz
dotty-34317c162e9d79729e57d22bb167f420e948da8f.tar.bz2
dotty-34317c162e9d79729e57d22bb167f420e948da8f.zip
Added main runner and driver.
Left dummies for Compiler and Run.
Diffstat (limited to 'src/dotty/tools/dotc/Compiler.scala')
-rw-r--r--src/dotty/tools/dotc/Compiler.scala11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/dotty/tools/dotc/Compiler.scala b/src/dotty/tools/dotc/Compiler.scala
new file mode 100644
index 000000000..f5bf1fb9b
--- /dev/null
+++ b/src/dotty/tools/dotc/Compiler.scala
@@ -0,0 +1,11 @@
+package dotty.tools
+package dotc
+
+import core._
+import Contexts._
+
+class Compiler {
+
+ def newRun(implicit ctx: Context): Run = new Run(this)
+
+} \ No newline at end of file