Changeset 135 in dev for BasicCompiler_Common/hash.cpp


Ignore:
Timestamp:
Jun 6, 2007, 12:58:40 AM (17 years ago)
Author:
dai_9181
Message:

Method/Memberのリファクタリング

File:
1 edited

Legend:

Unmodified
Added
Removed
  • BasicCompiler_Common/hash.cpp

    r114 r135  
    9999            if( isStatic ){
    100100                // 静的メソッドから列挙
    101                 pobj_c->EnumStaticMethod( NestMember, subs );
     101                pobj_c->GetStaticMethods().EnumStatic( NestMember, subs );
    102102            }
    103103            else{
    104104                //動的メソッドから列挙
    105                 pobj_c->EnumMethod( NestMember, subs );
     105                pobj_c->GetMethods().Enum( NestMember, subs );
    106106            }
    107107            return;
     
    114114
    115115        // 静的メソッド
    116         pobj_CompilingClass->EnumStaticMethod( name, subs );
     116        pobj_CompilingClass->GetStaticMethods().EnumStatic( name, subs );
    117117
    118118        // 動的メソッド
    119         pobj_CompilingClass->EnumMethod( name, subs );
     119        pobj_CompilingClass->GetMethods().Enum( name, subs );
    120120    }
    121121
     
    190190    if( pClass ){
    191191        vector<UserProc *> userProcs;
    192         pClass->EnumMethod( methodName, userProcs );
     192        pClass->GetMethods().Enum( methodName, userProcs );
    193193        if( userProcs.size() == 1 ){
    194194            return userProcs[0];
Note: See TracChangeset for help on using the changeset viewer.