Changeset 26 in dev for BasicCompiler_Common/Compile.cpp
- Timestamp:
- Jan 7, 2007, 4:12:53 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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];
Note:
See TracChangeset
for help on using the changeset viewer.