Changeset 465 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/Object.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/Object.cpp
r331 r465 25 25 const UserProc *pUserProc = GetMethodHash(ObjectName,type.GetClass().GetName().c_str(),Parameter); 26 26 if(!pUserProc){ 27 if(Parameter[0]) SetError(113,type.GetClass().GetName().c_str(),cp);27 if(Parameter[0]) compiler.errorMessenger.Output(113,type.GetClass().GetName().c_str(),cp); 28 28 return; 29 29 } … … 102 102 i+=i2; 103 103 if(expression[i]!='\0'){ 104 SetError(42,NULL,cp);104 compiler.errorMessenger.Output(42,NULL,cp); 105 105 return false; 106 106 } … … 115 115 116 116 if( !compiler.StringToType( typeName, resultType ) ){ 117 SetError(3,typeName,cp);117 compiler.errorMessenger.Output(3,typeName,cp); 118 118 return false; 119 119 } … … 124 124 //////////////////////// 125 125 126 SetError(121,NULL,cp);126 compiler.errorMessenger.Output(121,NULL,cp); 127 127 return false; 128 128 }
Note:
See TracChangeset
for help on using the changeset viewer.