Changeset 18 in dev for BasicCompiler64/Compile_ProcOp.cpp
- Timestamp:
- Dec 24, 2006, 4:46:12 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler64/Compile_ProcOp.cpp
r17 r18 374 374 //コンパイル中の関数が属するクラス 375 375 pobj_CompilingClass=psi->pobj_ParentClass; 376 377 //コンパイルスタートをクラス管理クラスに追加 378 pobj_DBClass->StartCompile( psi ); 376 379 377 380 //コンパイル中の関数 … … 614 617 } 615 618 } 619 if(psi->name[0]=='~'){ 620 //デストラクタをコンパイルしたとき 621 622 //デストラクタのコンパイル開始を通知 623 pobj_CompilingClass->NotifyStartDestructorCompile(); 624 } 616 625 } 617 626 … … 633 642 if( pobj_CompilingClass->IsCompilingConstructor() ){ 634 643 // コンストラクタをコンパイルしていたとき 644 635 645 // コンストラクタのコンパイルが完了したことを通知 636 637 646 pobj_CompilingClass->NotifyFinishConstructorCompile(); 638 647 } … … 642 651 //デストラクタをコンパイルしたとき 643 652 //////////////////////////////////// 653 654 // デストラクタのコンパイルが完了したことを通知 655 pobj_CompilingClass->NotifyFinishDestructorCompile(); 644 656 645 657 if(pobj_CompilingClass->pobj_InheritsClass){
Note:
See TracChangeset
for help on using the changeset viewer.