Wiki
Show
Ignore:
Timestamp:
11/28/08 20:11:01 (3 years ago)
Author:
Chuck.Esterbrook
Message:

Added streams to the language. For example, int* or String*

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • cobra/trunk/Source/Expr.cobra

    r1769 r1781  
    352352    def afterStatementBindImp is override 
    353353        base.afterStatementBindImp 
    354         if not .type inherits NilableType 
    355             if .type.isReference 
    356                 .throwError('Must initialize this non-nil object type, or change the type to nilable (suffix a ?).') 
     354        if .type.isUninitializedForLocalVars 
     355            .throwError('Must initialize this non-nil object type, or change the type to nilable (suffix with ?).') 
    357356 
    358357