Changeset 285 in dev for trunk/abdev/BasicCompiler32
- Timestamp:
- Aug 16, 2007, 3:54:12 AM (17 years ago)
- Location:
- trunk/abdev/BasicCompiler32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler32/Compile_ProcOp.cpp
r283 r285 296 296 } 297 297 298 cp=pUserProc->GetCodePos(); 299 for(;;cp++){ 300 if(IsCommandDelimitation(basbuf[cp])) break; 301 } 302 cp--; 298 if( !pUserProc->IsAutoGeneration() ) 299 { 300 cp=pUserProc->GetCodePos(); 301 for(;;cp++){ 302 if(IsCommandDelimitation(basbuf[cp])) break; 303 } 304 cp--; 305 } 303 306 304 307 //ローカル変数に関する情報 -
trunk/abdev/BasicCompiler32/Compile_Statement.cpp
r276 r285 91 91 return; 92 92 } 93 94 93 95 94 Type resultType;
Note:
See TracChangeset
for help on using the changeset viewer.