File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
plugins/org.eclipse.dltk.javascript.core/src/org/eclipse/dltk/javascript/typeinfo Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ private static IRType initRType(IRType defaultValue) {
55
55
56
56
private static final IRType UNDEFINED_TYPE = new Undefined ();
57
57
58
- private static class Undefined extends RType {
58
+ static class Undefined extends RType {
59
59
public String getName () {
60
60
return ITypeNames .UNDEFINED ;
61
61
}
@@ -74,7 +74,7 @@ public static IRType undefined() {
74
74
75
75
private static final IRType ANY_TYPE = initRType (new Any ());
76
76
77
- private static class Any extends RType {
77
+ static class Any extends RType {
78
78
public String getName () {
79
79
return "Any" ;
80
80
}
@@ -101,7 +101,7 @@ public static IRType any() {
101
101
102
102
private static final IRType NONE_TYPE = new None ();
103
103
104
- private static class None extends RType {
104
+ static class None extends RType {
105
105
public String getName () {
106
106
return "None" ;
107
107
}
@@ -135,7 +135,7 @@ public static IRArrayType arrayOf() {
135
135
136
136
static final IRType EMPTY_ARRAY_ITEM_TYPE = new EmptyArrayItem ();
137
137
138
- private static class EmptyArrayItem extends RType {
138
+ static class EmptyArrayItem extends RType {
139
139
public String getName () {
140
140
return "empty" ;
141
141
}
You can’t perform that action at this time.
0 commit comments