Changeset 509 in dev for trunk/ab5.0/abdev/compiler_x86


Ignore:
Timestamp:
Apr 29, 2008, 12:27:10 PM (16 years ago)
Author:
dai_9181
Message:

Symbolクラスをab_commonプロジェクトに移動した。

Location:
trunk/ab5.0/abdev/compiler_x86
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/compiler_x86/Compile_CallProc.cpp

    r465 r509  
    55#include "../BasicCompiler_Common/common.h"
    66#include "Opcode.h"
     7
     8using namespace ActiveBasic::Compiler;
    79
    810void Call_DebugSys_SaveContext(){
     
    435437{
    436438    extern BOOL bDebugSupportProc;
    437     if( compiler.IsDebug() && bDebugSupportProc==0 && pDllProc->IsEqualSymbol( "DebugBreak" ) )
     439    if( compiler.IsDebug() && bDebugSupportProc==0 && pDllProc->IsEqualSymbol( LexicalAnalyzer::FullNameToSymbol( "DebugBreak" ) ) )
    438440    {
    439441        Call_DebugSys_SaveContext();
  • trunk/ab5.0/abdev/compiler_x86/compiler_x86.vcproj

    r507 r509  
    13441344                    </File>
    13451345                    <File
    1346                         RelativePath="..\BasicCompiler_Common\src\Symbol.cpp"
    1347                         >
    1348                     </File>
    1349                     <File
    13501346                        RelativePath="..\BasicCompiler_Common\src\Type.cpp"
    13511347                        >
     
    15411537                    </File>
    15421538                    <File
    1543                         RelativePath="..\BasicCompiler_Common\include\Symbol.h"
    1544                         >
    1545                     </File>
    1546                     <File
    15471539                        RelativePath="..\BasicCompiler_Common\include\Type.h"
    15481540                        >
  • trunk/ab5.0/abdev/compiler_x86/stdafx.h

    r508 r509  
    3434#include <abdev/ab_common/include/Namespace.h>
    3535#include <abdev/ab_common/include/NamespaceSupporter.h>
     36#include <abdev/ab_common/include/Symbol.h>
    3637
    3738using namespace ActiveBasic::Common::Lexical;
     
    4243#include <Hashmap.h>
    4344#include <Configuration.h>
    44 #include <Symbol.h>
    4545#include <LexicalAnalyzer.h>
    4646#include <Program.h>
Note: See TracChangeset for help on using the changeset viewer.