summaryrefslogtreecommitdiff
path: root/sources/meta/scalac/ast/Tree.java
diff options
context:
space:
mode:
Diffstat (limited to 'sources/meta/scalac/ast/Tree.java')
-rw-r--r--sources/meta/scalac/ast/Tree.java8
1 files changed, 1 insertions, 7 deletions
diff --git a/sources/meta/scalac/ast/Tree.java b/sources/meta/scalac/ast/Tree.java
index 02bb466d08..d596549522 100644
--- a/sources/meta/scalac/ast/Tree.java
+++ b/sources/meta/scalac/ast/Tree.java
@@ -100,8 +100,7 @@ public class Tree {
n_SelectFromType = node("SelectFromType", Type, HasSym),
n_FunType = node("FunType" , Type, NoSym),
n_CompoundType = node("CompoundType" , Type, NoSym),
- n_AppliedType = node("AppliedType" , Type, NoSym),
- n_CovariantType = node("CovariantType" , Type, NoSym);
+ n_AppliedType = node("AppliedType" , Type, NoSym);
public final TreeNode[] nodes;
public int arrays;
@@ -323,11 +322,6 @@ public class Tree {
addField(t_TypeTree, "tpe").
addField(t_TypeTrees, "args");
- n_CovariantType.
- setDescription("Covariant type").
- setRange(Phase.PARSER, Phase.ANALYZER).
- addField(t_TypeTree, "tpe");
-
}
//########################################################################