summaryrefslogtreecommitdiff
path: root/sources/scalac/transformer/ExpandMixins.java
diff options
context:
space:
mode:
Diffstat (limited to 'sources/scalac/transformer/ExpandMixins.java')
-rw-r--r--sources/scalac/transformer/ExpandMixins.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/scalac/transformer/ExpandMixins.java b/sources/scalac/transformer/ExpandMixins.java
index 9ce484ab12..9959490afc 100644
--- a/sources/scalac/transformer/ExpandMixins.java
+++ b/sources/scalac/transformer/ExpandMixins.java
@@ -39,7 +39,7 @@ public class ExpandMixins extends Transformer {
protected final static int PRIVATE_FINAL = Modifiers.FINAL | Modifiers.PRIVATE;
- protected final TreeCopier treeCopier;
+ protected final AttributedTreeCopier treeCopier;
protected final Definitions defs;
public ExpandMixins(Global global, ExpandMixinsPhase descr) {
@@ -53,7 +53,7 @@ public class ExpandMixins extends Transformer {
freshNameCreator = global.freshNameCreator;
- treeCopier = new TreeCopier(global, global.make) {
+ treeCopier = new AttributedTreeCopier(global, global.make) {
// Substitute symbols refering to this class only.
public boolean mustSubstituteSymbol(Tree tree) {
switch (tree) {