Changeset 37 in dev for BasicCompiler_Common/Intermediate_Step2.cpp
- Timestamp:
- Jan 21, 2007, 5:04:58 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler_Common/Intermediate_Step2.cpp
r27 r37 422 422 } 423 423 424 bool isPare = false; 424 425 for(i=0;;i++){ 425 426 if(Command[i]==' '||Command[i]=='\t'||Command[i]=='('||Command[i]=='\"'||Command[i]=='@'||Command[i]=='-'){ 426 427 com[i]=0; 427 428 while(Command[i]==' '||Command[i]=='\t') i++; 429 if( Command[i] == '(' ) isPare = true; 428 430 break; 429 431 } … … 453 455 lstrcmpi(com,"PRINT")==0|| 454 456 lstrcmpi(com,"RANDOMIZE")==0|| 455 //lstrcmpi(com,"WRITE")==0|| TODO: Trace.Writeとの重複が未完成457 ( lstrcmpi(com,"WRITE")==0 && isPare == false )|| 456 458 lstrcmpi(com,"MSGBOX")==0|| 457 459 lstrcmpi(com,"WINDOW")==0||
Note:
See TracChangeset
for help on using the changeset viewer.