Changeset 256 in dev for trunk/abdev/BasicCompiler_Common/Intermediate_Step2.cpp
- Timestamp:
- Aug 1, 2007, 11:19:01 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/Intermediate_Step2.cpp
r206 r256 79 79 80 80 //定数を追加 81 compiler. GetMeta().GetGlobalConsts().Add( namespaceScopes, temporary, NextValue);81 compiler.objectModule.meta.GetGlobalConsts().Add( namespaceScopes, temporary, NextValue); 82 82 } 83 83 } … … 95 95 96 96 //定数に関する情報を初期化 97 compiler. GetMeta().GetGlobalConsts().Clear();98 compiler. GetMeta().GetGlobalConstMacros().Clear();97 compiler.objectModule.meta.GetGlobalConsts().Clear(); 98 compiler.objectModule.meta.GetGlobalConstMacros().Clear(); 99 99 100 100 extern char *basbuf; … … 172 172 173 173 // イテレータを初期化 174 compiler. GetMeta().GetGlobalConsts().Iterator_Init();175 compiler. GetMeta().GetGlobalConstMacros().Iterator_Init();174 compiler.objectModule.meta.GetGlobalConsts().Iterator_Init(); 175 compiler.objectModule.meta.GetGlobalConstMacros().Iterator_Init(); 176 176 177 177 return true;
Note:
See TracChangeset
for help on using the changeset viewer.