Skip to content

Commit 957a4af

Browse files
committed
internal: RTypes - default visibility for inner classes
1 parent 130afd4 commit 957a4af

File tree

1 file changed

+4
-4
lines changed
  • plugins/org.eclipse.dltk.javascript.core/src/org/eclipse/dltk/javascript/typeinfo

1 file changed

+4
-4
lines changed

plugins/org.eclipse.dltk.javascript.core/src/org/eclipse/dltk/javascript/typeinfo/RTypes.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ private static IRType initRType(IRType defaultValue) {
5555

5656
private static final IRType UNDEFINED_TYPE = new Undefined();
5757

58-
private static class Undefined extends RType {
58+
static class Undefined extends RType {
5959
public String getName() {
6060
return ITypeNames.UNDEFINED;
6161
}
@@ -74,7 +74,7 @@ public static IRType undefined() {
7474

7575
private static final IRType ANY_TYPE = initRType(new Any());
7676

77-
private static class Any extends RType {
77+
static class Any extends RType {
7878
public String getName() {
7979
return "Any";
8080
}
@@ -101,7 +101,7 @@ public static IRType any() {
101101

102102
private static final IRType NONE_TYPE = new None();
103103

104-
private static class None extends RType {
104+
static class None extends RType {
105105
public String getName() {
106106
return "None";
107107
}
@@ -135,7 +135,7 @@ public static IRArrayType arrayOf() {
135135

136136
static final IRType EMPTY_ARRAY_ITEM_TYPE = new EmptyArrayItem();
137137

138-
private static class EmptyArrayItem extends RType {
138+
static class EmptyArrayItem extends RType {
139139
public String getName() {
140140
return "empty";
141141
}

0 commit comments

Comments
 (0)