Changeset 465 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/src/Method.cpp
- Timestamp:
- Mar 24, 2008, 8:05:20 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/src/Method.cpp
r396 r465 11 11 { 12 12 // Override修飾子が無い状況で基底クラスの実体メソッドをオーバーライドしようとした 13 SetError(127,NULL,cp);13 compiler.errorMessenger.Output(127,NULL,cp); 14 14 } 15 15 … … 21 21 { 22 22 // オーバーライドミス 23 SetError(136, pUserProc->GetName(), cp);23 compiler.errorMessenger.Output(136, pUserProc->GetName(), cp); 24 24 } 25 25 if(this->GetAccessibility() != accessibility ) 26 26 { 27 SetError(128,NULL,cp);27 compiler.errorMessenger.Output(128,NULL,cp); 28 28 } 29 29 … … 35 35 { 36 36 // 静的メソッドがコピーコンストラトされることは想定しない 37 SetError();37 compiler.errorMessenger.OutputFatalError(); 38 38 } 39 39 … … 160 160 161 161 if(pMethod->IsAbstract()){ 162 SetError();162 compiler.errorMessenger.OutputFatalError(); 163 163 164 164 ppsi[i2]=0;
Note:
See TracChangeset
for help on using the changeset viewer.