Changeset 382 in dev for trunk/abdev/BasicCompiler_Common/include
- Timestamp:
- Jan 2, 2008, 12:50:34 AM (17 years ago)
- Location:
- trunk/abdev/BasicCompiler_Common/include
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/include/Class.h
r379 r382 4 4 #include <Program.h> 5 5 #include <Prototype.h> 6 #include <Type.h> 6 7 #include <Method.h> 7 8 #include <Member.h> … … 148 149 GenericTypes formalGenericTypes; 149 150 150 // 継承クラス151 // 基底クラス 151 152 const CClass *pSuperClass; 152 153 153 // 継承クラスの型パラメータ(実パラメータ)154 // 基底クラスの型パラメータ(実パラメータ) 154 155 Types superClassActualTypeParameters; 155 156 -
trunk/abdev/BasicCompiler_Common/include/Member.h
r299 r382 7 7 #include <Program.h> 8 8 #include <Prototype.h> 9 #include <Type.h>10 9 11 10 using namespace std; -
trunk/abdev/BasicCompiler_Common/include/Method.h
r353 r382 230 230 void AddStatic(UserProc *pUserProc,Prototype::Accessibility accessibility); 231 231 232 // オーバーライドのための検索 233 CMethod *FindForOverride( const UserProc *pUserProc ); 232 /*! 233 @brief オーバーライドのための検索 234 @param actualTypeParametersForThisMethods thisオブジェクトで保有するメソッド群を対象とした実型パラメータ 235 pUserProc 照らし合わせる関数 236 */ 237 CMethod *FindForOverride( const Types &actualTypeParametersForThisMethods, const UserProc *pUserProc ); 234 238 235 239 const CMethod *GetMethodPtr( const UserProc *pUserProc ) const; -
trunk/abdev/BasicCompiler_Common/include/Procedure.h
r364 r382 5 5 #include <Program.h> 6 6 #include <Class.h> 7 #include <Method.h>8 7 #include <Procedure.h> 9 8 #include <Parameter.h> … … 225 224 } 226 225 227 // オーバーライド用に関数同士が等しいかどうかをチェックする 228 bool IsEqualForOverride( const UserProc *pUserProc ) const 229 { 230 if( this->GetName() == pUserProc->GetName() // 名前空間及び名前が等しい 231 && this->Params().Equals( pUserProc->Params() ) // パラメータが等しい 232 && this->returnType.Equals( pUserProc->returnType ) ) // 戻り値が等しい 233 { 234 return true; 235 } 236 return false; 237 } 226 /*! 227 @brief オーバーライド用に関数同士が等しいかどうかをチェックする 228 @param actualTypeParametersForThisProc thisオブジェクトで保有するメソッドを対象とした実型パラメータ 229 pUserProc 照らし合わせる関数 230 */ 231 bool IsEqualForOverride( const Types &actualTypeParametersForThisProc, const UserProc *pUserProc ) const; 238 232 239 233 bool IsMacro() const
Note:
See TracChangeset
for help on using the changeset viewer.