summaryrefslogtreecommitdiff
path: root/sources/scalac/transformer
diff options
context:
space:
mode:
Diffstat (limited to 'sources/scalac/transformer')
-rw-r--r--sources/scalac/transformer/LambdaLiftPhase.java8
1 files changed, 2 insertions, 6 deletions
diff --git a/sources/scalac/transformer/LambdaLiftPhase.java b/sources/scalac/transformer/LambdaLiftPhase.java
index 73e26e7986..050cc95515 100644
--- a/sources/scalac/transformer/LambdaLiftPhase.java
+++ b/sources/scalac/transformer/LambdaLiftPhase.java
@@ -73,6 +73,8 @@ public class LambdaLiftPhase extends PhaseDescriptor implements Kinds, Modifiers
return transformTypeMap.setOwner(owner).apply(tp);
}
+ /** MapOnlyTypes => All symbols are mapped to themselves.
+ */
private class TransformTypeMap extends Type.MapOnlyTypes {
Symbol owner;
// ArrayList/*<Symbol>*/ excluded = new ArrayList();
@@ -122,12 +124,6 @@ public class LambdaLiftPhase extends PhaseDescriptor implements Kinds, Modifiers
}
return map(tp);
}
-
- /** All symbols are mapped to themselves.
- */
- public Scope map(Scope s) { return s; }
- public Symbol map(Symbol s) { return s; }
- public Symbol[] map(Symbol[] ss) { return ss; }
}
private TransformTypeMap transformTypeMap = new TransformTypeMap();