Changeset 18 in dev for BasicCompiler32/Compile_Var.cpp
- Timestamp:
- Dec 24, 2006, 4:46:12 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler32/Compile_Var.cpp
r17 r18 445 445 } 446 446 if(i==pobj_CompilingClass->iMemberNum) goto NonClassMember; 447 } 448 449 //Const修飾子のメソッド内でメンバ書き込みアクセスが発生したとき 450 //(コンストラクタ、デストラクタ内を除く) 451 CMethod *pMethod = pobj_DBClass->GetNowCompilingMethodInfo(); 452 if( isWriteAccess && 453 pMethod->isConst && 454 pobj_CompilingClass->IsCompilingConstructor() == false && 455 pobj_CompilingClass->IsCompilingDestructor() == false 456 ){ 457 SetError(131, NULL, cp ); 447 458 } 448 459 … … 567 578 ok: 568 579 569 if( bConst && isWriteAccess){580 if( bConst && isWriteAccess ){ 570 581 //Const定義の変数に書き込みアクセスをしようとした場合 571 SetError(61,VarName,cp); 582 if( *pType == DEF_OBJECT ){ 583 //オブジェクト定数 584 SetError(130, VarName, cp ); 585 } 586 else{ 587 //一般のConst変数 588 SetError(61,VarName,cp); 589 } 572 590 } 573 591
Note:
See TracChangeset
for help on using the changeset viewer.