summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/typechecker/Typers.scala
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2013-04-09 23:17:18 +0200
committerJason Zaugg <jzaugg@gmail.com>2013-04-21 13:01:02 +0200
commit190aea9f015280d0f48cc2928515d11eccce4e33 (patch)
tree1852a5b8321a0f8ecacb50a7d30e1907f3eb4fbd /src/compiler/scala/tools/nsc/typechecker/Typers.scala
parentc9f5ab031a881812149908491217b531b6e29e06 (diff)
downloadscala-190aea9f015280d0f48cc2928515d11eccce4e33.tar.gz
scala-190aea9f015280d0f48cc2928515d11eccce4e33.tar.bz2
scala-190aea9f015280d0f48cc2928515d11eccce4e33.zip
SI-7345 Exploit named/default args
- Collapse overloads of `rootContext` - make `atOwner` more concise
Diffstat (limited to 'src/compiler/scala/tools/nsc/typechecker/Typers.scala')
-rw-r--r--src/compiler/scala/tools/nsc/typechecker/Typers.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/typechecker/Typers.scala b/src/compiler/scala/tools/nsc/typechecker/Typers.scala
index 69cd802170..f57352b11e 100644
--- a/src/compiler/scala/tools/nsc/typechecker/Typers.scala
+++ b/src/compiler/scala/tools/nsc/typechecker/Typers.scala
@@ -5292,7 +5292,7 @@ trait Typers extends Adaptations with Tags {
}
def atOwner(owner: Symbol): Typer =
- newTyper(context.make(context.tree, owner))
+ newTyper(context.make(owner = owner))
def atOwner(tree: Tree, owner: Symbol): Typer =
newTyper(context.make(tree, owner))