aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/typer/ImportInfo.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2013-07-23 15:18:32 +0200
committerMartin Odersky <odersky@gmail.com>2013-07-23 15:18:32 +0200
commit0a86c0ae8668070f62df25c7a4ba12369f23b216 (patch)
tree635a6479b1b68ecf1a08c6393bbb89e591db2b14 /src/dotty/tools/dotc/typer/ImportInfo.scala
parenta2c0e29c9e2f8f06e9499c02ebd6e2c3666a0709 (diff)
downloaddotty-0a86c0ae8668070f62df25c7a4ba12369f23b216.tar.gz
dotty-0a86c0ae8668070f62df25c7a4ba12369f23b216.tar.bz2
dotty-0a86c0ae8668070f62df25c7a4ba12369f23b216.zip
Added scheme to disabled implicit imports (not just Predef) if an explicit one is given for the same package or object.
Diffstat (limited to 'src/dotty/tools/dotc/typer/ImportInfo.scala')
-rw-r--r--src/dotty/tools/dotc/typer/ImportInfo.scala9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/dotty/tools/dotc/typer/ImportInfo.scala b/src/dotty/tools/dotc/typer/ImportInfo.scala
index 1a720f9d1..50455e97f 100644
--- a/src/dotty/tools/dotc/typer/ImportInfo.scala
+++ b/src/dotty/tools/dotc/typer/ImportInfo.scala
@@ -8,8 +8,13 @@ import core._
import util.SimpleMap
import Symbols._, Names._, Denotations._, Types._, Contexts._, StdNames._, Flags._
-/** Info relating to an import clause */
-case class ImportInfo(sym: Symbol, selectors: List[untpd.Tree])(implicit ctx: Context) {
+/** Info relating to an import clause
+ * @param sym The import symbol defined by the clause
+ * @param selectors The selector clauses
+ * @param rootImport true if this is one of the implicit imports of scala, java.lang
+ * or Predef in the start context, false otherwise.
+ */
+class ImportInfo(val sym: Symbol, val selectors: List[untpd.Tree], val rootImport: Boolean = false)(implicit ctx: Context) {
/** The (TermRef) type of the qualifier of the import clause */
def site(implicit ctx: Context): Type = {