Changeset 202 in dev


Ignore:
Timestamp:
Jul 3, 2007, 1:36:14 AM (17 years ago)
Author:
dai_9181
Message:
 
Location:
trunk/abdev/BasicCompiler64
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler64/Compile_ProcOp.cpp

    r198 r202  
    77#include <ClassImpl.h>
    88#include <VariableImpl.h>
    9 #include <NamespaceSupporter.h>
    109
    1110#include "../BasicCompiler_Common/common.h"
     
    272271
    273272    // コンパイル中の関数が属する名前空間
    274     namespaceSupporter.SetLivingNamespaceScopes( pUserProc->GetNamespaceScopes() );
     273    compiler.GetNamespaceSupporter().SetLivingNamespaceScopes( pUserProc->GetNamespaceScopes() );
    275274
    276275    // コンパイル中の関数でImportsされている名前空間
    277     namespaceSupporter.SetImportedNamespaces( pUserProc->GetImportedNamespaces() );
     276    compiler.GetNamespaceSupporter().SetImportedNamespaces( pUserProc->GetImportedNamespaces() );
    278277
    279278    if(pUserProc->IsSystem()){
  • trunk/abdev/BasicCompiler64/MakePeHdr.cpp

    r198 r202  
    66#include <ClassImpl.h>
    77#include <Compiler.h>
    8 #include <NamespaceSupporter.h>
    98
    109#include "../BasicCompiler_Common/common.h"
     
    319318    if(!bDll){
    320319        // 名前空間が初期化されているかをチェック
    321         if( namespaceSupporter.GetLivingNamespaceScopes().size() ){
     320        if( compiler.GetNamespaceSupporter().GetLivingNamespaceScopes().size() ){
    322321            SetError();
    323322        }
     
    434433
    435434        // 名前空間が正しく閉じられているかをチェック
    436         if( namespaceSupporter.GetLivingNamespaceScopes().size() ){
     435        if( compiler.GetNamespaceSupporter().GetLivingNamespaceScopes().size() ){
    437436            SetError(63,NULL,-1);
    438437        }
Note: See TracChangeset for help on using the changeset viewer.