summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
authormihaylov <mihaylov@epfl.ch>2004-11-23 13:20:43 +0000
committermihaylov <mihaylov@epfl.ch>2004-11-23 13:20:43 +0000
commita21098b9cb410f0e645ecf0b7c5df4808dabc377 (patch)
tree7782863c0259737f552e08ae113052cfb732063b /sources
parent41b5050ad18bdc244824732b05e30ccd629b0fbe (diff)
downloadscala-a21098b9cb410f0e645ecf0b7c5df4808dabc377.tar.gz
scala-a21098b9cb410f0e645ecf0b7c5df4808dabc377.tar.bz2
scala-a21098b9cb410f0e645ecf0b7c5df4808dabc377.zip
[MSIL] Do not initialize the TYPE_CLASS symbol;...
[MSIL] Do not initialize the TYPE_CLASS symbol; class scala.Type is not in the .NET version of the Scala library
Diffstat (limited to 'sources')
-rw-r--r--sources/scalac/symtab/Definitions.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/scalac/symtab/Definitions.java b/sources/scalac/symtab/Definitions.java
index 259e66a17d..34a6f72bbc 100644
--- a/sources/scalac/symtab/Definitions.java
+++ b/sources/scalac/symtab/Definitions.java
@@ -720,7 +720,7 @@ public class Definitions {
SEQ_CLASS = getClass("scala.Seq");
LIST_CLASS = getClass("scala.List");
ARRAY_CLASS = getClass("scala.Array");
- TYPE_CLASS = getClass("scala.Type");
+ TYPE_CLASS = getJVMClass("scala.Type");
CLASSTYPE_CLASS = getJVMClass("scala.runtime.types.ClassType");
JAVACLASSTYPE_CLASS = getJVMClass("scala.runtime.types.JavaClassType");