Ignore:
Timestamp:
Jun 27, 2007, 3:16:11 AM (17 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler_Common/src/TypeDef.cpp

    r195 r199  
    2525        return false;
    2626    }
    27     return namespaceSupporter.IsSameAreaNamespace( this->namespaceScopes, namespaceScopes );
     27    return compiler.GetNamespaceSupporter().IsSameAreaNamespace( this->namespaceScopes, namespaceScopes );
    2828}
    2929bool TypeDef::IsEqualSymbol( const string &fullName ) const
     
    148148
    149149    // 名前空間管理
    150     NamespaceScopes &namespaceScopes = namespaceSupporter.GetLivingNamespaceScopes();
     150    NamespaceScopes &namespaceScopes = compiler.GetNamespaceSupporter().GetLivingNamespaceScopes();
    151151    namespaceScopes.clear();
    152152
    153153    // Importsされた名前空間の管理
    154     NamespaceScopesCollection &importedNamespaces = namespaceSupporter.GetImportedNamespaces();
     154    NamespaceScopesCollection &importedNamespaces = compiler.GetNamespaceSupporter().GetImportedNamespaces();
    155155    importedNamespaces.clear();
    156156
     
    193193                temporary[i2]=basbuf[i];
    194194            }
    195             if( !namespaceSupporter.ImportsNamespace( temporary ) )
     195            if( !compiler.GetNamespaceSupporter().ImportsNamespace( temporary ) )
    196196            {
    197197                SmoothieException::Throw(64,temporary,i );
Note: See TracChangeset for help on using the changeset viewer.