Changeset 537 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/Compile.cpp
- Timestamp:
- May 3, 2008, 6:58:38 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/Compile.cpp
r524 r537 242 242 243 243 case ESC_TYPEDEF: 244 if( UserProc::IsLocalAreaCompiling() ){244 if( compiler.IsLocalAreaCompiling() ){ 245 245 // ローカル領域をコンパイルしているとき 246 246 compiler.errorMessenger.Output(65,"TypeDef",cp ); … … 251 251 252 252 case ESC_DELEGATE: 253 if( UserProc::IsLocalAreaCompiling() ){253 if( compiler.IsLocalAreaCompiling() ){ 254 254 // ローカル領域をコンパイルしているとき 255 255 compiler.errorMessenger.Output(65,"Delegate",cp ); … … 335 335 break; 336 336 case ESC_DECLARE: 337 if( UserProc::IsLocalAreaCompiling() ){337 if( compiler.IsLocalAreaCompiling() ){ 338 338 // ローカル領域をコンパイルしているとき 339 339 compiler.errorMessenger.Output(65,"Declare",cp );
Note:
See TracChangeset
for help on using the changeset viewer.