Changeset 640 in dev for trunk/ab5.0/abdev/ab_common/src/Lexical/ObjectModule.cpp
- Timestamp:
- Jun 14, 2008, 12:16:27 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/ab_common/src/Lexical/ObjectModule.cpp
r639 r640 77 77 } 78 78 79 // 依存関係を解決80 this->Resolve();81 82 79 // TODO: basbufがいらなくなったら消す 83 80 extern char *basbuf; … … 85 82 } 86 83 87 void ObjectModule::Resolve( )88 { 89 this->meta.Resolve( *this );84 void ObjectModule::Resolve( ResolveErrors &resolveErrors ) 85 { 86 this->meta.Resolve( *this, resolveErrors ); 90 87 91 88 // グローバルネイティブコードを解決(スケジュールを解決する) 92 this->globalNativeCode.Resolve( *this );89 this->globalNativeCode.Resolve( *this, resolveErrors ); 93 90 94 91 // データテーブルを解決(スケジュールを解決する) 95 this->dataTable.Resolve( *this );92 this->dataTable.Resolve( *this, resolveErrors ); 96 93 } 97 94
Note:
See TracChangeset
for help on using the changeset viewer.