summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/typechecker/Typers.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2013-10-01 15:02:45 -0700
committerPaul Phillips <paulp@improving.org>2013-10-01 15:02:45 -0700
commitbef9e52d7337dafcc1f507ff1d93241f12f7c6d9 (patch)
treea7061f415a042fb65e3980d3f7a0bd21e717777d /src/compiler/scala/tools/nsc/typechecker/Typers.scala
parent2bba7797028a19b541b5bd88bd2b732e9a58681c (diff)
parent7d62df035cd4393c73e7530e1cad1130e79d90c6 (diff)
downloadscala-bef9e52d7337dafcc1f507ff1d93241f12f7c6d9.tar.gz
scala-bef9e52d7337dafcc1f507ff1d93241f12f7c6d9.tar.bz2
scala-bef9e52d7337dafcc1f507ff1d93241f12f7c6d9.zip
Merge pull request #3003 from paulp/pr/position-catchup
Updating Position call sites.
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 2a2fd889ad..d74fa50dcb 100644
--- a/src/compiler/scala/tools/nsc/typechecker/Typers.scala
+++ b/src/compiler/scala/tools/nsc/typechecker/Typers.scala
@@ -5127,7 +5127,7 @@ trait Typers extends Adaptations with Tags with TypersTracking with PatternTyper
// @M causes cyclic reference error
devWarning(s"exception when typing $tree, pt=$ptPlugins")
if (context != null && context.unit.exists && tree != null)
- logError("AT: " + (tree.pos).dbgString, ex)
+ logError("AT: " + tree.pos, ex)
throw ex
}
}