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