Changeset 195 in dev for trunk/abdev/BasicCompiler_Common/Subroutine.cpp
- Timestamp:
- Jun 26, 2007, 1:48:18 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/Subroutine.cpp
r193 r195 4 4 #include <Compiler.h> 5 5 #include <ProcedureImpl.h> 6 #include <NamespaceSupporter.h> 6 7 7 8 #include "../BasicCompiler_Common/common.h" … … 628 629 629 630 // 名前空間管理 630 NamespaceScopes &namespaceScopes = Smoothie::Temp::liveingNamespaceScopes;631 NamespaceScopes &namespaceScopes = namespaceSupporter.GetLivingNamespaceScopes(); 631 632 namespaceScopes.clear(); 632 633 633 634 // Importsされた名前空間の管理 634 NamespaceScopesCollection &importedNamespaces = compiler.GetImportedNamespaces();635 NamespaceScopesCollection &importedNamespaces = namespaceSupporter.GetImportedNamespaces(); 635 636 importedNamespaces.clear(); 636 637 … … 686 687 temporary[i2]=basbuf[i]; 687 688 } 688 if( ! compiler.ImportsNamespace( temporary ) )689 if( !namespaceSupporter.ImportsNamespace( temporary ) ) 689 690 { 690 691 SetError(64,temporary,cp );
Note:
See TracChangeset
for help on using the changeset viewer.