Changeset 465 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/src/Parameter.cpp
- Timestamp:
- Mar 24, 2008, 8:05:20 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/src/Parameter.cpp
r448 r465 145 145 if( isRef == false ) 146 146 { 147 SetError(29,NULL,nowLine);147 compiler.errorMessenger.Output(29,NULL,nowLine); 148 148 } 149 149 isArray = true; … … 206 206 207 207 if( type.IsNull() ){ 208 SetError(3,temporary,nowLine);208 compiler.errorMessenger.Output(3,temporary,nowLine); 209 209 type.SetBasicType( DEF_PTR_VOID ); 210 210 } … … 219 219 else{ 220 220 type.SetBasicType( Type::GetBasicTypeFromSimpleName(temporary) ); 221 SetError(-103,temporary,nowLine);221 compiler.errorMessenger.Output(-103,temporary,nowLine); 222 222 } 223 223 … … 240 240 } 241 241 else{ 242 SetError(1,NULL,nowLine);242 compiler.errorMessenger.Output(1,NULL,nowLine); 243 243 break; 244 244 }
Note:
See TracChangeset
for help on using the changeset viewer.