Ignore:
Timestamp:
Jul 29, 2007, 12:33:04 PM (17 years ago)
Author:
dai_9181
Message:

BreakPertialScheduleをリファクタリング

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler32/Compile_Var.cpp

    r241 r248  
    44#include <jenga/include/smoothie/LexicalAnalysis.h>
    55
    6 #include <LexicalScopingImpl.h>
     6#include <LexicalScope.h>
    77#include <CodeGenerator.h>
    88#include <Compiler.h>
     
    10551055
    10561056        //レキシカルスコープ
    1057         pVar->SetScopeLevel( GetLexicalScopes().GetNowLevel() );
    1058         pVar->SetScopeStartAddress( GetLexicalScopes().GetStartAddress() );
     1057        pVar->SetScopeLevel( compiler.codeGenerator.lexicalScopes.GetNowLevel() );
     1058        pVar->SetScopeStartAddress( compiler.codeGenerator.lexicalScopes.GetStartAddress() );
    10591059        pVar->bLiving=TRUE;
    10601060
     
    10901090
    10911091        //レキシカルスコープ
    1092         pVar->SetScopeLevel( GetLexicalScopes().GetNowLevel() );
    1093         pVar->SetScopeStartAddress( GetLexicalScopes().GetStartAddress() );
     1092        pVar->SetScopeLevel( compiler.codeGenerator.lexicalScopes.GetNowLevel() );
     1093        pVar->SetScopeStartAddress( compiler.codeGenerator.lexicalScopes.GetStartAddress() );
    10941094        pVar->bLiving=TRUE;
    10951095
Note: See TracChangeset for help on using the changeset viewer.