Changeset 465 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/src/DataTable.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/DataTable.cpp
r461 r465 121 121 { 122 122 // エラー 123 SetError();123 compiler.errorMessenger.OutputFatalError(); 124 124 return false; 125 125 } … … 196 196 i+=i2; 197 197 if(expression[i]!='\0'){ 198 SetError(42,NULL,cp);198 compiler.errorMessenger.Output(42,NULL,cp); 199 199 return false; 200 200 } … … 213 213 214 214 if( !compiler.StringToType( typeName, resultType ) ){ 215 SetError(3,typeName,cp);215 compiler.errorMessenger.Output(3,typeName,cp); 216 216 return false; 217 217 } … … 222 222 //////////////////////// 223 223 224 SetError(121,NULL,cp);224 compiler.errorMessenger.Output(121,NULL,cp); 225 225 return false; 226 226 } … … 268 268 { 269 269 if( !baseType.IsPointer() ){ 270 SetError(1,NULL,cp);270 compiler.errorMessenger.Output(1,NULL,cp); 271 271 return false; 272 272 } … … 301 301 if( !RemoveStringQuotes( tempParamStr ) ) 302 302 { 303 SetError();303 compiler.errorMessenger.OutputFatalError(); 304 304 } 305 305 … … 335 335 if( !resultType.IsWhole() ){ 336 336 // TODO: 実数に未対応 337 SetError();337 compiler.errorMessenger.OutputFatalError(); 338 338 isSuccessful = false; 339 339 break;
Note:
See TracChangeset
for help on using the changeset viewer.