Changeset 547 in dev for trunk/ab5.0/abdev/compiler_x86/MakePeHdr.cpp
- Timestamp:
- May 4, 2008, 10:07:31 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/compiler_x86/MakePeHdr.cpp
r545 r547 141 141 142 142 //列挙体に関する情報を収集 143 compiler.enumInfoCollection.InitEnum(); 144 145 //列挙体からクラスコードを生成 146 char *temp; 147 temp=compiler.enumInfoCollection.GenerateSourceCode(); 148 AddSourceCode(temp); 149 HeapDefaultFree(temp); 143 { 144 ActiveBasic::Compiler::LexicalAnalyzer::CollectEnums( 145 compiler.GetObjectModule().GetCurrentSource().GetBuffer(), 146 compiler.enumInfoCollection 147 ); 148 149 // デリゲートからクラスコードを生成 150 std::string tempSource = ActiveBasic::Compiler::LexicalAnalyzer::GenerateEnumsSourceCode( 151 compiler.enumInfoCollection 152 ); 153 AddSourceCode( tempSource.c_str() ); 154 } 150 155 151 156 // 名前空間情報を取得
Note:
See TracChangeset
for help on using the changeset viewer.