Changeset 18 in dev for BasicCompiler32/Compile_ProcOp.cpp
- Timestamp:
- Dec 24, 2006, 4:46:12 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler32/Compile_ProcOp.cpp
r17 r18 335 335 //コンパイル中の関数が属するクラス 336 336 pobj_CompilingClass=psi->pobj_ParentClass; 337 338 //コンパイルスタートをクラス管理クラスに追加 339 pobj_DBClass->StartCompile( psi ); 337 340 338 341 //コンパイル中の関数 … … 569 572 } 570 573 } 574 else if(psi->name[0]=='~'){ 575 //デストラクタをコンパイルしたとき 576 577 //デストラクタのコンパイル開始を通知 578 pobj_CompilingClass->NotifyStartDestructorCompile(); 579 } 571 580 } 572 581 … … 584 593 if( pobj_CompilingClass->IsCompilingConstructor() ){ 585 594 // コンストラクタをコンパイルしていたとき 595 586 596 // コンストラクタのコンパイルが完了したことを通知 587 588 597 pobj_CompilingClass->NotifyFinishConstructorCompile(); 589 598 } 590 591 if(psi->name[0]=='~'){ 599 else if(psi->name[0]=='~'){ 592 600 //////////////////////////////////// 593 601 //デストラクタをコンパイルしたとき 594 602 //////////////////////////////////// 603 604 // デストラクタのコンパイルが完了したことを通知 605 pobj_CompilingClass->NotifyFinishDestructorCompile(); 595 606 596 607 if(pobj_CompilingClass->pobj_InheritsClass){
Note:
See TracChangeset
for help on using the changeset viewer.