Changeset 465 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/Subroutine.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/Subroutine.cpp
r461 r465 372 372 else if( source[i] == 1 && source[i+1] == ESC_ENDNAMESPACE ){ 373 373 if( namespaceScopes.size() <= 0 ){ 374 SetError(12, "End Namespace", i );374 compiler.errorMessenger.Output(12, "End Namespace", i ); 375 375 } 376 376 else{ … … 391 391 if( !compiler.GetNamespaceSupporter().ImportsNamespace( temporary ) ) 392 392 { 393 SetError(64,temporary,cp );393 compiler.errorMessenger.Output(64,temporary,cp ); 394 394 } 395 395 … … 497 497 CompileBufferInProcedure( *pUserProc ); 498 498 } 499 else SetError(300,NULL,cp);499 else compiler.errorMessenger.Output(300,NULL,cp); 500 500 } 501 501 else
Note:
See TracChangeset
for help on using the changeset viewer.