Changeset 195 in dev for trunk/abdev/BasicCompiler32
- Timestamp:
- Jun 26, 2007, 1:48:18 PM (17 years ago)
- Location:
- trunk/abdev/BasicCompiler32
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler32/BasicCompiler.vcproj
r193 r195 1276 1276 </File> 1277 1277 <File 1278 RelativePath="..\BasicCompiler_Common\src\NamespaceSupporter.cpp" 1279 > 1280 </File> 1281 <File 1278 1282 RelativePath="..\BasicCompiler_Common\src\ProcedureImpl.cpp" 1279 1283 > … … 1377 1381 </File> 1378 1382 <File 1383 RelativePath="..\BasicCompiler_Common\include\NamespaceSupporter.h" 1384 > 1385 </File> 1386 <File 1379 1387 RelativePath="..\BasicCompiler_Common\include\ProcedureImpl.h" 1380 1388 > -
trunk/abdev/BasicCompiler32/Compile_ProcOp.cpp
r193 r195 7 7 #include <ClassImpl.h> 8 8 #include <VariableImpl.h> 9 #include <NamespaceSupporter.h> 9 10 10 11 #include "../BasicCompiler_Common/common.h" … … 281 282 282 283 // コンパイル中の関数が属する名前空間 283 Smoothie::Temp::liveingNamespaceScopes= pUserProc->GetNamespaceScopes();284 namespaceSupporter.GetLivingNamespaceScopes() = pUserProc->GetNamespaceScopes(); 284 285 285 286 // コンパイル中の関数でImportsされている名前空間 286 compiler.SetImportedNamespaces( pUserProc->GetImportedNamespaces() );287 namespaceSupporter.SetImportedNamespaces( pUserProc->GetImportedNamespaces() ); 287 288 288 289 if(pUserProc->IsSystem()){ -
trunk/abdev/BasicCompiler32/MakePeHdr.cpp
r193 r195 6 6 #include <ClassImpl.h> 7 7 #include <Compiler.h> 8 #include <NamespaceSupporter.h> 8 9 9 10 #include "../BasicCompiler_Common/common.h" … … 169 170 170 171 // 名前空間情報を取得 171 NamespaceS copesCollection::CollectNamespaces(172 NamespaceSupporter::CollectNamespaces( 172 173 Smoothie::Lexical::source.GetBuffer(), 173 174 compiler.GetMeta().GetNamespaces() … … 370 371 if(!bDll){ 371 372 // 名前空間が初期化されているかをチェック 372 if( Smoothie::Temp::liveingNamespaceScopes.size() ){373 if( namespaceSupporter.GetLivingNamespaceScopes().size() ){ 373 374 SetError(); 374 375 } … … 470 471 471 472 // 名前空間が正しく閉じられているかをチェック 472 if( Smoothie::Temp::liveingNamespaceScopes.size() ){473 if( namespaceSupporter.GetLivingNamespaceScopes().size() ){ 473 474 SetError(63,NULL,-1); 474 475 }
Note:
See TracChangeset
for help on using the changeset viewer.