Changeset 465 in dev for trunk/ab5.0/abdev/BasicCompiler32/Compile_Func.cpp
- Timestamp:
- Mar 24, 2008, 8:05:20 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler32/Compile_Func.cpp
r461 r465 263 263 || type.IsObjectPtr() && referenceKind == RefPointer ) ) 264 264 { 265 SetError(104,ObjectName,cp);265 compiler.errorMessenger.Output(104,ObjectName,cp); 266 266 } 267 267 … … 305 305 if( vtblMasterListIndex != 0 ) 306 306 { 307 SetError();307 compiler.errorMessenger.OutputFatalError(); 308 308 } 309 309 } … … 400 400 { 401 401 extern int cp; 402 SetError(1,NULL,cp);402 compiler.errorMessenger.Output(1,NULL,cp); 403 403 return; 404 404 } … … 460 460 GetOverloadSubHash( name, subs ); 461 461 if( subs.size() == 0 ){ 462 SetError(27,name,cp);462 compiler.errorMessenger.Output(27,name,cp); 463 463 return; 464 464 } … … 480 480 ) ) 481 481 { 482 SetError(67, name, cp );482 compiler.errorMessenger.Output(67, name, cp ); 483 483 } 484 484 } … … 491 491 ) ) 492 492 { 493 SetError(66, name, cp );493 compiler.errorMessenger.Output(66, name, cp ); 494 494 } 495 495 } … … 497 497 498 498 if(!pUserProc){ 499 SetError(27,name,cp);499 compiler.errorMessenger.Output(27,name,cp); 500 500 return; 501 501 } … … 504 504 pUserProc=GetSubHash(name); 505 505 if(!pUserProc){ 506 SetError(27,name,cp);506 compiler.errorMessenger.Output(27,name,cp); 507 507 return; 508 508 } … … 531 531 Type tempType; 532 532 if( !compiler.StringToType( typeName, tempType ) ){ 533 SetError(3,typeName,cp);533 compiler.errorMessenger.Output(3,typeName,cp); 534 534 return; 535 535 } … … 597 597 } 598 598 else{ 599 SetError(134,NULL,cp );599 compiler.errorMessenger.Output(134,NULL,cp ); 600 600 } 601 601 } … … 680 680 } 681 681 if(!tempType.IsWhole()){ 682 SetError(11,Parameter,cp);682 compiler.errorMessenger.Output(11,Parameter,cp); 683 683 return; 684 684 }
Note:
See TracChangeset
for help on using the changeset viewer.