Changeset 465 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/ParamImpl.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/ParamImpl.cpp
r424 r465 44 44 if( buffer[i] == '\0' ) 45 45 { 46 SetError();46 compiler.errorMessenger.OutputFatalError(); 47 47 break; 48 48 } … … 236 236 if( pUserProc ){ 237 237 if( isEnabledReturnType ){ 238 SetError(52,name,cp);238 compiler.errorMessenger.Output(52,name,cp); 239 239 return NULL; 240 240 } … … 267 267 if( pUserProc ) 268 268 { 269 SetError(52,name,cp);269 compiler.errorMessenger.Output(52,name,cp); 270 270 return NULL; 271 271 } … … 278 278 if( !pUserProc ) 279 279 { 280 SetError();280 compiler.errorMessenger.OutputFatalError(); 281 281 } 282 282 … … 318 318 if( params.size() == 0 || params[params.size()-1]->GetBasicType()!=DEF_ELLIPSE ){ 319 319 //パラメータが多すぎるとき 320 SetError(10,procName,cp);320 compiler.errorMessenger.Output(10,procName,cp); 321 321 return false; 322 322 } … … 329 329 330 330 //パラメータが少なすぎるとき 331 SetError(10,procName,cp);331 compiler.errorMessenger.Output(10,procName,cp); 332 332 return false; 333 333 }
Note:
See TracChangeset
for help on using the changeset viewer.