Changeset 17 in dev for BasicCompiler64/Compile_ProcOp.cpp
- Timestamp:
- Dec 20, 2006, 2:51:56 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler64/Compile_ProcOp.cpp
r11 r17 497 497 // コンストラクタをコンパイルするとき 498 498 //////////////////////////////////// 499 500 //コンストラクタのコンパイル開始を通知 501 pobj_CompilingClass->NotifyStartConstructorCompile(); 499 502 500 503 //スーパークラスかどうかの識別 … … 626 629 ////////////////////////////////////////// 627 630 628 if(pobj_CompilingClass){ 631 if( pobj_CompilingClass ){ 632 633 if( pobj_CompilingClass->IsCompilingConstructor() ){ 634 // コンストラクタをコンパイルしていたとき 635 // コンストラクタのコンパイルが完了したことを通知 636 637 pobj_CompilingClass->NotifyFinishConstructorCompile(); 638 } 639 629 640 if(psi->name[0]=='~'){ 630 641 ////////////////////////////////////
Note:
See TracChangeset
for help on using the changeset viewer.