Ignore:
Timestamp:
Jun 26, 2007, 1:48:18 PM (17 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler_Common/Subroutine.cpp

    r193 r195  
    44#include <Compiler.h>
    55#include <ProcedureImpl.h>
     6#include <NamespaceSupporter.h>
    67
    78#include "../BasicCompiler_Common/common.h"
     
    628629
    629630    // 名前空間管理
    630     NamespaceScopes &namespaceScopes = Smoothie::Temp::liveingNamespaceScopes;
     631    NamespaceScopes &namespaceScopes = namespaceSupporter.GetLivingNamespaceScopes();
    631632    namespaceScopes.clear();
    632633
    633634    // Importsされた名前空間の管理
    634     NamespaceScopesCollection &importedNamespaces = compiler.GetImportedNamespaces();
     635    NamespaceScopesCollection &importedNamespaces = namespaceSupporter.GetImportedNamespaces();
    635636    importedNamespaces.clear();
    636637
     
    686687                temporary[i2]=basbuf[i];
    687688            }
    688             if( !compiler.ImportsNamespace( temporary ) )
     689            if( !namespaceSupporter.ImportsNamespace( temporary ) )
    689690            {
    690691                SetError(64,temporary,cp );
Note: See TracChangeset for help on using the changeset viewer.