aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/typer/Typer.scala
diff options
context:
space:
mode:
authorodersky <odersky@gmail.com>2016-11-05 13:36:29 +0100
committerGitHub <noreply@github.com>2016-11-05 13:36:29 +0100
commita55a2607c7376ed81141ef958d6a8eeaeea8fd72 (patch)
treed872141dd714f4e9426891f82269d4c11d42f6bb /src/dotty/tools/dotc/typer/Typer.scala
parent56f6933c7d164a446daa90099ffd3ce31647f6e0 (diff)
parent8c857cd29f48c3c2badfd37a7f22e8a24929d796 (diff)
downloaddotty-a55a2607c7376ed81141ef958d6a8eeaeea8fd72.tar.gz
dotty-a55a2607c7376ed81141ef958d6a8eeaeea8fd72.tar.bz2
dotty-a55a2607c7376ed81141ef958d6a8eeaeea8fd72.zip
Merge pull request #1657 from dotty-staging/fix-#1638
Fix #1638: Don't import when typing a package clause
Diffstat (limited to 'src/dotty/tools/dotc/typer/Typer.scala')
-rw-r--r--src/dotty/tools/dotc/typer/Typer.scala6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/dotty/tools/dotc/typer/Typer.scala b/src/dotty/tools/dotc/typer/Typer.scala
index c283f43cf..899b857ae 100644
--- a/src/dotty/tools/dotc/typer/Typer.scala
+++ b/src/dotty/tools/dotc/typer/Typer.scala
@@ -95,6 +95,7 @@ class Typer extends Namer with TypeAssigner with Applications with Implicits wit
def typedIdent(tree: untpd.Ident, pt: Type)(implicit ctx: Context): Tree = track("typedIdent") {
val refctx = ctx
val name = tree.name
+ val noImports = ctx.mode.is(Mode.InPackageClauseName)
/** Method is necessary because error messages need to bind to
* to typedIdent's context which is lost in nested calls to findRef
@@ -240,7 +241,8 @@ class Typer extends Namer with TypeAssigner with Applications with Implicits wit
/** Would import of kind `prec` be not shadowed by a nested higher-precedence definition? */
def isPossibleImport(prec: Int)(implicit ctx: Context) =
- prevPrec < prec || prevPrec == prec && (prevCtx.scope eq ctx.scope)
+ !noImports &&
+ (prevPrec < prec || prevPrec == prec && (prevCtx.scope eq ctx.scope))
@tailrec def loop(implicit ctx: Context): Type = {
if (ctx.scope == null) previous
@@ -1330,7 +1332,7 @@ class Typer extends Namer with TypeAssigner with Applications with Implicits wit
}
def typedPackageDef(tree: untpd.PackageDef)(implicit ctx: Context): Tree = track("typedPackageDef") {
- val pid1 = typedExpr(tree.pid, AnySelectionProto)
+ val pid1 = typedExpr(tree.pid, AnySelectionProto)(ctx.addMode(Mode.InPackageClauseName))
val pkg = pid1.symbol
val packageContext =
if (pkg is Package) ctx.fresh.setOwner(pkg.moduleClass).setTree(tree)