Changeset 131 in dev for BasicCompiler64/Compile_ProcOp.cpp
- Timestamp:
- Jun 4, 2007, 7:49:17 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler64/Compile_ProcOp.cpp
r129 r131 206 206 if( userProc.GetName() == "InitializeUserTypes" 207 207 && userProc.HasParentClass() 208 && (string)userProc.GetParentClass().name== "_System_TypeBase" ){208 && userProc.GetParentClass().GetName() == "_System_TypeBase" ){ 209 209 210 210 pobj_DBClass->Compile_System_InitializeUserTypes(); … … 212 212 else if( userProc.GetName() == "RegisterGlobalRoots" 213 213 && userProc.HasParentClass() 214 && (string)userProc.GetParentClass().name== "_System_CGarbageCollection" ){214 && userProc.GetParentClass().GetName() == "_System_CGarbageCollection" ){ 215 215 216 216 Compile_AddGlobalRootsForGc(); … … 503 503 504 504 if(pobj_CompilingClass){ 505 if( pUserProc->GetName() == pobj_CompilingClass-> name){505 if( pUserProc->GetName() == pobj_CompilingClass->GetName() ){ 506 506 //////////////////////////////////// 507 507 // コンストラクタをコンパイルするとき … … 534 534 temporary[i4]=basbuf[i3]; 535 535 } 536 if(lstrcmp(temporary, 537 pobj_CompilingClass->pobj_InheritsClass->name)==0){ 536 if( pobj_CompilingClass->pobj_InheritsClass->GetName() == temporary ){ 538 537 //基底クラスのコンストラクタを呼び出す 539 538 cp=i3;
Note:
See TracChangeset
for help on using the changeset viewer.