Changeset 27 in dev for BasicCompiler32/Compile_CallProc.cpp
- Timestamp:
- Jan 7, 2007, 6:51:20 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler32/Compile_CallProc.cpp
r26 r27 240 240 if(ObjectName[0]){ 241 241 if(lstrcmpi(ObjectName,"Super")==0){ 242 //クラスメンバ関数内から スーパークラスの呼び出し242 //クラスメンバ関数内から基底クラスの呼び出し 243 243 pobj_c=pobj_CompilingClass; 244 244 } … … 270 270 // メソッド情報を取得 271 271 ///////////////////////////////// 272 pMethod = pobj_c->GetMethodInfo( psi ); 273 if( !pMethod ){ 272 pMethod = NULL; 273 if( ! bStatic ) pMethod = pobj_c->GetMethodInfo( psi ); 274 if( ! pMethod ){ 274 275 //動的メソッドが取得できなかったときは静的メソッドを当たる 275 276 pMethod = pobj_c->GetStaticMethodInfo( psi );
Note:
See TracChangeset
for help on using the changeset viewer.