Changeset 26 in dev for BasicCompiler_Common
- Timestamp:
- Jan 7, 2007, 4:12:53 AM (18 years ago)
- Location:
- BasicCompiler_Common
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler_Common/BasicFixed.h
r4 r26 165 165 #define ESC_ENDTRY 'm' //End Try 166 166 //EXEファイル用制御エスケープシーケンス 167 #define ESC_USING 'n'//Print命令語のUsing168 #define ESC_FOR 'o'//Open命令語のFor169 #define ESC_LINENUM 'p'//行番号を示す167 #define ESC_USING 'n' //Print命令語のUsing 168 #define ESC_FOR 'o' //Open命令語のFor 169 #define ESC_LINENUM 'p' //行番号を示す 170 170 171 171 //オブジェクト指向エスケープシーケンス -
BasicCompiler_Common/Compile.cpp
r17 r26 224 224 case ESC_DECLARE: 225 225 break; 226 227 //Tryによる例外処理 228 case ESC_TRY: 229 Exception::TryCommand(); 230 break; 231 case ESC_CATCH: 232 Exception::CatchCommand(); 233 break; 234 case ESC_FINALLY: 235 Exception::FinallyCommand(); 236 break; 237 case ESC_ENDTRY: 238 Exception::EndTryCommand(); 239 break; 240 case ESC_THROW: 241 Exception::ThrowCommand( Command + 2 ); 242 break; 243 226 244 default: 227 245 char temporary[64]; -
BasicCompiler_Common/common.h
r23 r26 389 389 #include "../BasicCompiler_Common/LexicalScoping.h" 390 390 #include "../BasicCompiler_Common/Variable.h" 391 #include "../BasicCompiler_Common/Exception.h" 391 392 392 393
Note:
See TracChangeset
for help on using the changeset viewer.