Changeset 17 in dev for BasicCompiler32/Compile_ProcOp.cpp
- Timestamp:
- Dec 20, 2006, 2:51:56 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler32/Compile_ProcOp.cpp
r11 r17 442 442 // コンストラクタをコンパイルするとき 443 443 //////////////////////////////////// 444 445 //コンストラクタのコンパイル開始を通知 446 pobj_CompilingClass->NotifyStartConstructorCompile(); 444 447 445 448 //スーパークラスかどうかの識別 … … 577 580 ////////////////////////////////////////// 578 581 579 if(pobj_CompilingClass){ 582 if( pobj_CompilingClass ){ 583 584 if( pobj_CompilingClass->IsCompilingConstructor() ){ 585 // コンストラクタをコンパイルしていたとき 586 // コンストラクタのコンパイルが完了したことを通知 587 588 pobj_CompilingClass->NotifyFinishConstructorCompile(); 589 } 590 580 591 if(psi->name[0]=='~'){ 581 592 ////////////////////////////////////
Note:
See TracChangeset
for help on using the changeset viewer.