Ignore:
Timestamp:
May 3, 2008, 6:32:50 PM (16 years ago)
Author:
dai_9181
Message:

Compiler::pCompilingClassメンバをprivateにし、setter/getterにあたるメソッドを用意した。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/BasicCompiler_Common/WatchList.cpp

    r508 r536  
    379379    }
    380380
    381     if(compiler.pCompilingClass){
     381    if( compiler.IsCompilingClass() )
     382    {
    382383        ///////////////////////
    383384        // クラスメンバの参照
     
    392393            //クラス内の動的メンバを参照するとき(通常)
    393394
    394             if( !compiler.pCompilingClass->HasDynamicMember( VarName ) )
     395            if( !compiler.GetCompilingClass().HasDynamicMember( VarName ) )
    395396            {
    396397                goto NonClassMember;
     
    418419        pRelativeVar->dwKind=VAR_DIRECTMEM;
    419420
    420         i3=Debugging_GetMember(*compiler.pCompilingClass,variable,pRelativeVar,resultType,1);
     421        i3=Debugging_GetMember( compiler.GetCompilingClass(),variable,pRelativeVar,resultType,1);
    421422        if(i3==0){
    422423            //式エラー
Note: See TracChangeset for help on using the changeset viewer.