Changeset 364 in dev for trunk/abdev/BasicCompiler_Common/include
- Timestamp:
- Nov 11, 2007, 3:12:06 PM (17 years ago)
- Location:
- trunk/abdev/BasicCompiler_Common/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/include/CodeGenerator.h
r357 r364 99 99 public: 100 100 enum SCOPE_TYPE{ 101 // ベース101 // ベース 102 102 SCOPE_TYPE_BASE, 103 103 104 // 分岐104 // 分岐 105 105 SCOPE_TYPE_IF, 106 106 107 // ループ107 // ループ 108 108 SCOPE_TYPE_DO, 109 109 SCOPE_TYPE_FOR, 110 110 SCOPE_TYPE_WHILE, 111 111 112 // ケース分け112 // ケース分け 113 113 SCOPE_TYPE_SELECT, 114 115 // 例外処理 116 SCOPE_TRY, 117 SCOPE_CATCH, 118 SCOPE_FINALLY, 114 119 }; 115 120 -
trunk/abdev/BasicCompiler_Common/include/Procedure.h
r353 r364 382 382 static const UserProc *pCompilingUserProc; 383 383 public: 384 static const UserProc *pGlobalProc; 384 385 static void CompileStartForGlobalArea(){ 385 386 pCompilingUserProc = NULL; -
trunk/abdev/BasicCompiler_Common/include/ver.h
r363 r364 6 6 // バージョン付加文字列 7 7 #ifdef _AMD64_ 8 #define VER_INFO "(x64) (rev.37 4)"8 #define VER_INFO "(x64) (rev.375)" 9 9 #else 10 #define VER_INFO "(rev.37 4)"10 #define VER_INFO "(rev.375)" 11 11 #endif
Note:
See TracChangeset
for help on using the changeset viewer.