aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDmitry Petrashko <dark@d-d.me>2015-10-23 10:31:26 +0200
committerDmitry Petrashko <dark@d-d.me>2015-10-23 10:31:26 +0200
commit344f8499be5f4705c8bd7c9aad45d04d760d3dda (patch)
tree63961649fafa4a1ad5b36774d7ee45835c2b53ea /src
parent50fe6eb3f1edbbecd4c5f750ac61a9396c3f3852 (diff)
parent7384b8d90431d09178c532925f7db3408be550fc (diff)
downloaddotty-344f8499be5f4705c8bd7c9aad45d04d760d3dda.tar.gz
dotty-344f8499be5f4705c8bd7c9aad45d04d760d3dda.tar.bz2
dotty-344f8499be5f4705c8bd7c9aad45d04d760d3dda.zip
Merge pull request #842 from dotty-staging/fix-838
Fix #838. Fixes to non-local modules& static forwarders.
Diffstat (limited to 'src')
-rw-r--r--src/dotty/tools/backend/jvm/DottyBackendInterface.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotty/tools/backend/jvm/DottyBackendInterface.scala b/src/dotty/tools/backend/jvm/DottyBackendInterface.scala
index 916ab3298..f92abe906 100644
--- a/src/dotty/tools/backend/jvm/DottyBackendInterface.scala
+++ b/src/dotty/tools/backend/jvm/DottyBackendInterface.scala
@@ -640,7 +640,7 @@ class DottyBackendInterface()(implicit ctx: Context) extends BackendInterface{
val original = toDenot(sym).initial
val validity = original.validFor
val shiftedContext = ctx.withPhase(validity.phaseId)
- toDenot(sym)(shiftedContext).isStatic
+ toDenot(sym)(shiftedContext).isStatic(shiftedContext)
}
def isStaticConstructor: Boolean = isStaticMember && isClassConstructor