Show
Ignore:
Timestamp:
01/07/09 18:53:22 (11 months ago)
Author:
EricAllen
Message:

Added a type normalizer to improve presentation of types in error messages.
Got the type checker working over more of our first 20 compiled programs.
Added corresponding tests to CompilerJUTests.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/ProjectFortress/src/com/sun/fortress/interpreter/glue/WellKnownNames.java

    r3242 r3292  
    3636    } 
    3737 
     38    private static String _compilerLibrary = "CompilerLibrary"; 
     39    private static String _compilerBuiltin = "CompilerBuiltin"; 
    3840    private static String _fortressLibrary = "FortressLibrary"; 
    3941    private static String _fortressBuiltin = "FortressBuiltin"; 
     
    7678    public final static String labelException = "LabelException"; 
    7779 
     80    public static String compilerLibrary() { return _compilerLibrary; } 
     81    public static String compilerBuiltin() { return _compilerBuiltin; } 
    7882    public static String fortressLibrary() { return _fortressLibrary; } 
    7983    public static String fortressBuiltin() { return _fortressBuiltin; }