summaryrefslogtreecommitdiff
path: root/sources/scalac/symtab/classfile
diff options
context:
space:
mode:
authormihaylov <mihaylov@epfl.ch>2004-03-17 13:01:11 +0000
committermihaylov <mihaylov@epfl.ch>2004-03-17 13:01:11 +0000
commit5b2ecea0ec1f391a07cca969ad2296d500fe7aee (patch)
treef3890f71db6fcb16d2a8bb2661cbd25fc11d7a81 /sources/scalac/symtab/classfile
parent6ef9088488e74f3a9f7eebc885b9739457d1cd4a (diff)
downloadscala-5b2ecea0ec1f391a07cca969ad2296d500fe7aee.tar.gz
scala-5b2ecea0ec1f391a07cca969ad2296d500fe7aee.tar.bz2
scala-5b2ecea0ec1f391a07cca969ad2296d500fe7aee.zip
- Changed accessibility of some fields that rep...
- Changed accessibility of some fields that represent the basic MSIL types.
Diffstat (limited to 'sources/scalac/symtab/classfile')
-rw-r--r--sources/scalac/symtab/classfile/CLRPackageParser.java37
1 files changed, 19 insertions, 18 deletions
diff --git a/sources/scalac/symtab/classfile/CLRPackageParser.java b/sources/scalac/symtab/classfile/CLRPackageParser.java
index 310ea7a2fd..f1ab177184 100644
--- a/sources/scalac/symtab/classfile/CLRPackageParser.java
+++ b/sources/scalac/symtab/classfile/CLRPackageParser.java
@@ -33,23 +33,24 @@ public class CLRPackageParser extends SymbolLoader {
//##########################################################################
- Type BYTE;
- Type UBYTE;
- Type CHAR;
- Type SHORT;
- Type USHORT;
- Type INT;
- Type UINT;
- Type LONG;
- Type ULONG;
- Type FLOAT;
- Type DOUBLE;
- Type BOOLEAN;
- Type VOID;
-
- Type OBJECT;
- Type STRING;
- Type STRING_ARRAY;
+ public Type BYTE;
+ public Type UBYTE;
+ public Type CHAR;
+ public Type SHORT;
+ public Type USHORT;
+ public Type INT;
+ public Type UINT;
+ public Type LONG;
+ public Type ULONG;
+ public Type FLOAT;
+ public Type DOUBLE;
+ public Type BOOLEAN;
+ public Type VOID;
+ public Type ENUM;
+
+ public Type OBJECT;
+ public Type STRING;
+ public Type STRING_ARRAY;
protected CLRClassParser completer;
@@ -93,7 +94,7 @@ public class CLRPackageParser extends SymbolLoader {
DOUBLE = getType("System.Double");
BOOLEAN = getType("System.Boolean");
VOID = getType("System.Void");
- //ENUM = getType("System.Enum");
+ ENUM = getType("System.Enum");
OBJECT = getType("System.Object");
STRING = getType("System.String");