Changeset 193 in dev for trunk/abdev/BasicCompiler_Common/Subroutine.cpp
- Timestamp:
- Jun 26, 2007, 5:04:50 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/Subroutine.cpp
r182 r193 2 2 #include <jenga/include/smoothie/LexicalAnalysis.h> 3 3 4 #include <Compiler.h> 4 5 #include <ProcedureImpl.h> 5 6 … … 164 165 GetVarType(fullCallName,type,false); 165 166 166 ProcPointer *pProcPtr = Smoothie::GetMeta().GetProcPointers()[type.GetIndex()];167 ProcPointer *pProcPtr = compiler.GetMeta().GetProcPointers()[type.GetIndex()]; 167 168 resultType = pProcPtr->ReturnType(); 168 169 … … 631 632 632 633 // Importsされた名前空間の管理 633 NamespaceScopesCollection &importedNamespaces = Smoothie::Temp::importedNamespaces;634 NamespaceScopesCollection &importedNamespaces = compiler.GetImportedNamespaces(); 634 635 importedNamespaces.clear(); 635 636 … … 685 686 temporary[i2]=basbuf[i]; 686 687 } 687 if( ! importedNamespaces.Imports( temporary ) )688 if( !compiler.ImportsNamespace( temporary ) ) 688 689 { 689 690 SetError(64,temporary,cp );
Note:
See TracChangeset
for help on using the changeset viewer.