aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/typer/Typer.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/typer/Typer.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/typer/Typer.scala')
-rw-r--r--src/dotty/tools/dotc/typer/Typer.scala2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dotty/tools/dotc/typer/Typer.scala b/src/dotty/tools/dotc/typer/Typer.scala
index 9bdfea871..219f8045b 100644
--- a/src/dotty/tools/dotc/typer/Typer.scala
+++ b/src/dotty/tools/dotc/typer/Typer.scala
@@ -70,6 +70,8 @@ class Typer extends Namer with Applications with Implicits {
/** A temporary data item valid for a single typed ident:
* The set of all root import symbols that have been
* encountered as a qualifier of an import so far.
+ * Note: It would be more proper to move importedFromRoot into typedIdent.
+ * We should check that this has no performance degradation, however.
*/
private var importedFromRoot: Set[Symbol] = Set()