Changeset 135 in dev for BasicCompiler32/OperatorProc.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
  • BasicCompiler32/OperatorProc.cpp

    r76 r135  
    55    if(!IsSafeReg(reg)) SetError(300,NULL,cp);
    66
    7     CMethod *method = pobj_c->GetDestructorMethod();
     7    const CMethod *method = pobj_c->GetDestructorMethod();
    88    if( method ){
    99        //push reg
     
    2828
    2929    std::vector<UserProc *> subs;
    30     pobj_c->EnumMethod( idCalc, subs );
     30    pobj_c->GetMethods().Enum( idCalc, subs );
    3131    if( subs.size() == 0 ){
    3232        return 0;
     
    250250void CallIndexerGetterProc(const CClass *pobj_Class,char *ObjectName,char *Parameter,Type &resultType){
    251251    std::vector<UserProc *> subs;
    252     pobj_Class->EnumMethod( CALC_ARRAY_GET, subs );
     252    pobj_Class->GetMethods().Enum( CALC_ARRAY_GET, subs );
    253253    if( subs.size() == 0 ){
    254254        return;
Note: See TracChangeset for help on using the changeset viewer.