Ignore:
Timestamp:
Jun 11, 2008, 10:10:26 PM (16 years ago)
Author:
dai_9181
Message:

リンカの依存関係解決モジュールを製作中

File:
1 edited

Legend:

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

    r632 r637  
    117117
    118118            //クラスを追加
    119             CClass *pClass = new CClass( namespaceScopes, importedNamespaces, temporary );
     119            CClass *pClass = new CClass( Symbol( namespaceScopes, temporary ), importedNamespaces );
    120120            if( classes.IsExist( pClass ) )
    121121            {
     
    575575        //関数ハッシュへ登録
    576576        UserProc *pUserProc = new UserProc(
    577             NamespaceScopes(),
     577            Symbol( NamespaceScopes(), methodName ),
    578578            NamespaceScopesCollection(),
    579             methodName,
    580579            Procedure::Function,
    581580            false,
     
    14341433    // クラスをコピー
    14351434    CClass *pNewClass = new CClass(
    1436         _class.GetNamespaceScopes(),
     1435        _class,
    14371436        _class.GetImportedNamespaces(),
    1438         _class.GetName(),
    14391437        _class.GetClassType(),
    14401438        _class.GetFormalGenericTypes(),
Note: See TracChangeset for help on using the changeset viewer.