Changeset 131 in dev for BasicCompiler32/Compile_ProcOp.cpp
- Timestamp:
- Jun 4, 2007, 7:49:17 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler32/Compile_ProcOp.cpp
r129 r131 215 215 if( userProc.GetName() == "InitializeUserTypes" 216 216 && userProc.HasParentClass() 217 && (string)userProc.GetParentClass().name== "_System_TypeBase" ){217 && userProc.GetParentClass().GetName() == "_System_TypeBase" ){ 218 218 219 219 pobj_DBClass->Compile_System_InitializeUserTypes(); … … 221 221 else if( userProc.GetName() == "RegisterGlobalRoots" 222 222 && userProc.HasParentClass() 223 && (string)userProc.GetParentClass().name== "_System_CGarbageCollection" ){223 && userProc.GetParentClass().GetName() == "_System_CGarbageCollection" ){ 224 224 225 225 Compile_AddGlobalRootsForGc(); … … 451 451 452 452 if(pobj_CompilingClass){ 453 if( pUserProc->GetName() == pobj_CompilingClass-> name){453 if( pUserProc->GetName() == pobj_CompilingClass->GetName() ){ 454 454 //////////////////////////////////// 455 455 // コンストラクタをコンパイルするとき … … 482 482 temporary[i4]=basbuf[i3]; 483 483 } 484 if(lstrcmp(temporary, 485 pobj_CompilingClass->pobj_InheritsClass->name)==0){ 484 if( pobj_CompilingClass->pobj_InheritsClass->GetName() == temporary ){ 486 485 //基底クラスのコンストラクタを呼び出す 487 486 cp=i3;
Note:
See TracChangeset
for help on using the changeset viewer.