summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
authorpaltherr <paltherr@epfl.ch>2003-04-14 09:18:49 +0000
committerpaltherr <paltherr@epfl.ch>2003-04-14 09:18:49 +0000
commit8bfdf09fe8c1c823a9f620fb23d3e39c7ff65b5f (patch)
tree3444d11fcb0a7d0e41a78c6b9a03f3db3b67f153 /sources
parentcc931f87ac42d33d16e9db96e2ba0d7426b276ae (diff)
downloadscala-8bfdf09fe8c1c823a9f620fb23d3e39c7ff65b5f.tar.gz
scala-8bfdf09fe8c1c823a9f620fb23d3e39c7ff65b5f.tar.bz2
scala-8bfdf09fe8c1c823a9f620fb23d3e39c7ff65b5f.zip
- Fixed TreeCopier name
Diffstat (limited to 'sources')
-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) {