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の実装内容を受け継ぐ。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/BasicCompiler_Common/hash.cpp

    r536 r566  
    8282            if( !pobj_c )
    8383            {
    84                 pobj_c=compiler.GetObjectModule().meta.GetClasses().Find(ObjName);
     84                pobj_c=compiler.GetObjectModule().meta.FindClassSupportedTypeDef(ObjName);
    8585                if( pobj_c ){
    8686                    isStatic = true;
     
    160160
    161161const UserProc *GetClassMethod( const char *className, const char *methodName ){
    162     const CClass *pClass = compiler.GetObjectModule().meta.GetClasses().Find( className );
     162    const CClass *pClass = compiler.GetObjectModule().meta.FindClassSupportedTypeDef( className );
    163163    if( pClass ){
    164164        std::vector<const UserProc *> userProcs;
Note: See TracChangeset for help on using the changeset viewer.