Show
Ignore:
Timestamp:
06/10/09 19:56:03 (6 months ago)
Author:
sukyoungryu
Message:

[type checker] Fixed small things in the Scala type checker. Matched some error messages from the Java type checker and the Scala type checker. Do not type check programs with syntax errors. Moved two tests from not_working_static_tests to compiler_tests.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/ProjectFortress/src/com/sun/fortress/compiler/StaticChecker.java

    r3829 r3835  
    222222                ConstraintUtil.useScalaFormulas(); 
    223223                STypeChecker typeChecker = STypeCheckerFactory.make(component, traitTable, typeEnv, typeAnalyzer); 
    224                 component_ast = typeChecker.check(component_ast); 
     224                component_ast = typeChecker.typecheck(component_ast); 
    225225                component = IndexBuilder.builder.buildComponentIndex((Component)component_ast, 
    226226                    System.currentTimeMillis());