Changeset 637 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/src/LexicalAnalyzer_Class.cpp
- Timestamp:
- Jun 11, 2008, 10:10:26 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/src/LexicalAnalyzer_Class.cpp
r632 r637 117 117 118 118 //クラスを追加 119 CClass *pClass = new CClass( namespaceScopes, importedNamespaces, temporary);119 CClass *pClass = new CClass( Symbol( namespaceScopes, temporary ), importedNamespaces ); 120 120 if( classes.IsExist( pClass ) ) 121 121 { … … 575 575 //関数ハッシュへ登録 576 576 UserProc *pUserProc = new UserProc( 577 NamespaceScopes(),577 Symbol( NamespaceScopes(), methodName ), 578 578 NamespaceScopesCollection(), 579 methodName,580 579 Procedure::Function, 581 580 false, … … 1434 1433 // クラスをコピー 1435 1434 CClass *pNewClass = new CClass( 1436 _class .GetNamespaceScopes(),1435 _class, 1437 1436 _class.GetImportedNamespaces(), 1438 _class.GetName(),1439 1437 _class.GetClassType(), 1440 1438 _class.GetFormalGenericTypes(),
Note:
See TracChangeset
for help on using the changeset viewer.