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


Ignore:
Timestamp:
May 6, 2008, 1:41:03 PM (16 years ago)
Author:
dai_9181
Message:

・Classes::Find→Classes::FindExにリネームして、TypeDefサポートを排除した。
・Meta::FindClassSupportedTypeDefメソッドを実装。従来のClasses::Findの実装内容を受け継ぐ。

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

Legend:

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

    r536 r566  
    132132                if( !pobj_c )
    133133                {
    134                     pobj_c=compiler.GetObjectModule().meta.GetClasses().Find(ObjectName);
     134                    pobj_c = compiler.GetObjectModule().meta.FindClassSupportedTypeDef( ObjectName );
    135135                    if( pobj_c ){
    136136                        isStatic = true;
  • trunk/ab5.0/abdev/compiler_x86/NumOpe.cpp

    r536 r566  
    415415
    416416    if( pIsClassName ){
    417         if( compiler.GetObjectModule().meta.GetClasses().Find( termFull ) ){
     417        if( compiler.GetObjectModule().meta.FindClassSupportedTypeDef( termFull ) ){
    418418            *pIsClassName = true;
    419419            return true;
Note: See TracChangeset for help on using the changeset viewer.