Changeset 26 in dev
- Timestamp:
- Jan 7, 2007, 4:12:53 AM (18 years ago)
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler32/BasicCompiler.vcproj
r15 r26 1277 1277 <File 1278 1278 RelativePath="..\BasicCompiler_Common\Variable.h" 1279 > 1280 </File> 1281 </Filter> 1282 <Filter 1283 Name="Exception" 1284 > 1285 <File 1286 RelativePath="..\BasicCompiler_Common\Exception.cpp" 1287 > 1288 </File> 1289 <File 1290 RelativePath="..\BasicCompiler_Common\Exception.h" 1279 1291 > 1280 1292 </File> -
BasicCompiler32/Compile_CallProc.cpp
r20 r26 278 278 return -1; 279 279 } 280 281 //静的メンバ 282 bStatic=1; 280 283 } 281 284 -
BasicCompiler64/BasicCompiler.vcproj
r15 r26 1522 1522 </File> 1523 1523 </Filter> 1524 <Filter 1525 Name="Exception" 1526 > 1527 <File 1528 RelativePath="..\BasicCompiler_Common\Exception.cpp" 1529 > 1530 </File> 1531 <File 1532 RelativePath="..\BasicCompiler_Common\Exception.h" 1533 > 1534 </File> 1535 </Filter> 1524 1536 </Filter> 1525 1537 </Filter> -
BasicCompiler64/Compile_CallProc.cpp
r20 r26 283 283 return -1; 284 284 } 285 286 //静的メンバ 287 bStatic=1; 285 288 } 286 289 -
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.