Changeset 465 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/src/Const.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/Const.cpp
r265 r465 17 17 for(i=0;;i++){ 18 18 if(buffer[i]=='\0'){ 19 SetError(10,"Const",cp);19 compiler.errorMessenger.Output(10,"Const",cp); 20 20 return; 21 21 } … … 31 31 || compiler.GetObjectModule().meta.GetGlobalConsts().IsExist( name ) ) 32 32 { 33 SetError(15,name,cp);33 compiler.errorMessenger.Output(15,name,cp); 34 34 return; 35 35 } … … 144 144 extern int cp; 145 145 for(i2=0;i2<num;i2++) HeapDefaultFree(pParms[i2]); 146 SetError(10,GetName().c_str(),cp);146 compiler.errorMessenger.Output(10,GetName().c_str(),cp); 147 147 lstrcpy(dest,"0"); 148 148 return 1; … … 206 206 if(parameterStr[i]!='(') 207 207 { 208 SetError();208 compiler.errorMessenger.OutputFatalError(); 209 209 return; 210 210 } … … 214 214 for(i++,i2=0;;i++,i2++){ 215 215 if(parameterStr[i]=='\0'){ 216 SetError(1,NULL,cp);216 compiler.errorMessenger.Output(1,NULL,cp); 217 217 return; 218 218 } … … 226 226 if(parameterStr[i]!='='){ 227 227 extern int cp; 228 SetError(1,NULL,cp);228 compiler.errorMessenger.Output(1,NULL,cp); 229 229 return; 230 230 }
Note:
See TracChangeset
for help on using the changeset viewer.