summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sources/scala/tools/nsc/ast/Trees.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/scala/tools/nsc/ast/Trees.scala b/sources/scala/tools/nsc/ast/Trees.scala
index 91f608358e..dfa5c42d16 100644
--- a/sources/scala/tools/nsc/ast/Trees.scala
+++ b/sources/scala/tools/nsc/ast/Trees.scala
@@ -943,7 +943,7 @@ import symtab.Flags._;
copy.AliasTypeDef(tree, mods, name, transformAbsTypeDefs(tparams), transform(rhs))
}
case LabelDef(name, params, rhs) =>
- copy.LabelDef(tree, name, transformIdents(params), transform(rhs))
+ copy.LabelDef(tree, name, transformIdents(params), transform(rhs)) //bq: Martin, once, atOwner(...) works, also change `LamdaLifter.proxy'
case Import(expr, selectors) =>
copy.Import(tree, transform(expr), selectors)
case Attributed(attribute, definition) =>