Changeset 135 in dev for BasicCompiler_Common/Diagnose.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/Diagnose.cpp

    r131 r135  
    7777
    7878            // 動的メソッド
    79             foreach( const CMethod &method, objClass.GetMethods() ){
    80                 if( method.pUserProc->IsCompiled() ){
    81                     codeSizeOfClass += method.pUserProc->GetCodeSize();
     79            foreach( const CMethod *pMethod, objClass.GetMethods() ){
     80                if( pMethod->pUserProc->IsCompiled() ){
     81                    codeSizeOfClass += pMethod->pUserProc->GetCodeSize();
    8282                }
    8383            }
    8484
    8585            // 静的メソッド
    86             foreach( const CMethod &method, objClass.GetStaticMethods() ){
    87                     codeSizeOfClass += method.pUserProc->GetCodeSize();
     86            foreach( const CMethod *pMethod, objClass.GetStaticMethods() ){
     87                    codeSizeOfClass += pMethod->pUserProc->GetCodeSize();
    8888            }
    8989
     
    112112
    113113            // 動的メソッド
    114             foreach( const CMethod &method, objClass.GetMethods() ){
    115                 if( method.pUserProc->IsCompiled() ){
    116                     codeSizeOfClass += method.pUserProc->GetCodeSize();
     114            foreach( const CMethod *pMethod, objClass.GetMethods() ){
     115                if( pMethod->pUserProc->IsCompiled() ){
     116                    codeSizeOfClass += pMethod->pUserProc->GetCodeSize();
    117117                }
    118118            }
    119119
    120120            // 静的メソッド
    121             foreach( const CMethod &method, objClass.GetStaticMethods() ){
    122                     codeSizeOfClass += method.pUserProc->GetCodeSize();
     121            foreach( const CMethod *pMethod, objClass.GetStaticMethods() ){
     122                    codeSizeOfClass += pMethod->pUserProc->GetCodeSize();
    123123            }
    124124
Note: See TracChangeset for help on using the changeset viewer.