aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/Main.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2016-03-15 11:43:00 +0100
committerMartin Odersky <odersky@gmail.com>2016-04-01 11:20:18 +0200
commit4ab16677e1ccc469fe17b313dc48fd8427418fc7 (patch)
tree2acf4ff18b85c778d506d1579e71312b2a389ef9 /src/dotty/tools/dotc/Main.scala
parent1c48c1f8a0ff8f94652a98992d13fa47207a79d4 (diff)
downloaddotty-4ab16677e1ccc469fe17b313dc48fd8427418fc7.tar.gz
dotty-4ab16677e1ccc469fe17b313dc48fd8427418fc7.tar.bz2
dotty-4ab16677e1ccc469fe17b313dc48fd8427418fc7.zip
Better documentation of main classes
Diffstat (limited to 'src/dotty/tools/dotc/Main.scala')
-rw-r--r--src/dotty/tools/dotc/Main.scala3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/dotty/tools/dotc/Main.scala b/src/dotty/tools/dotc/Main.scala
index 6c473d8bb..a6844fbbc 100644
--- a/src/dotty/tools/dotc/Main.scala
+++ b/src/dotty/tools/dotc/Main.scala
@@ -3,8 +3,7 @@ package dotc
import core.Contexts.Context
-/* To do:
- */
+/** Main class of the `dotc` batch compiler. */
object Main extends Driver {
override def newCompiler(implicit ctx: Context): Compiler = new Compiler
}