1 | #include "stdafx.h"
|
---|
2 |
|
---|
3 | bool Parameter::Equals( const Parameter ¶m, bool isContravariant ) const
|
---|
4 | {
|
---|
5 | if( Type::Equals( param ) )
|
---|
6 | {
|
---|
7 | return true;
|
---|
8 | }
|
---|
9 | else
|
---|
10 | {
|
---|
11 | if( this->isRef && this->GetBasicType() == DEF_ANY &&
|
---|
12 | param.isRef == false && param.IsPointer()
|
---|
13 | ||
|
---|
14 | this->isRef == false && this->IsPointer() &&
|
---|
15 | param.isRef && param.GetBasicType() == DEF_ANY )
|
---|
16 | {
|
---|
17 | /* ByRef var As Any
|
---|
18 | と
|
---|
19 | var As VoidPtr
|
---|
20 | は同等
|
---|
21 | */
|
---|
22 | return true;
|
---|
23 | }
|
---|
24 | }
|
---|
25 |
|
---|
26 | if( isContravariant )
|
---|
27 | {
|
---|
28 | // 反変引数を許可する
|
---|
29 | if( this->IsContravariant( param ) )
|
---|
30 | {
|
---|
31 | // 反変引数だったとき
|
---|
32 | return true;
|
---|
33 | }
|
---|
34 | }
|
---|
35 |
|
---|
36 | return false;
|
---|
37 | }
|
---|
38 | bool Parameter::Equals( const Types &actualTypeParametersForThisProc, const Parameter ¶m, bool isContravariant ) const
|
---|
39 | {
|
---|
40 | if( Equals( param, isContravariant ) )
|
---|
41 | {
|
---|
42 | return true;
|
---|
43 | }
|
---|
44 |
|
---|
45 | if( this->IsTypeParameter() )
|
---|
46 | {
|
---|
47 | // 型パラメータだったとき
|
---|
48 | if( actualTypeParametersForThisProc[this->GetFormalTypeIndex()].Equals( param ) )
|
---|
49 | {
|
---|
50 | // 戻り値が等しい
|
---|
51 | return true;
|
---|
52 | }
|
---|
53 | }
|
---|
54 |
|
---|
55 | return false;
|
---|
56 | }
|
---|
57 |
|
---|
58 | bool Parameters::Equals( const Parameters ¶ms, bool isContravariant ) const
|
---|
59 | {
|
---|
60 | if( this->size() != params.size() ){
|
---|
61 | return false;
|
---|
62 | }
|
---|
63 |
|
---|
64 | int max = (int)this->size();
|
---|
65 | for( int i=0; i<max; i++ ){
|
---|
66 | if( !(*this)[i]->Equals( *params[i], isContravariant ) ){
|
---|
67 | return false;
|
---|
68 | }
|
---|
69 | }
|
---|
70 |
|
---|
71 | return true;
|
---|
72 | }
|
---|
73 | bool Parameters::Equals( const Types &actualTypeParametersForThisProc, const Parameters ¶ms, bool isContravariant ) const
|
---|
74 | {
|
---|
75 | if( this->size() != params.size() ){
|
---|
76 | return false;
|
---|
77 | }
|
---|
78 |
|
---|
79 | int max = (int)this->size();
|
---|
80 | for( int i=0; i<max; i++ ){
|
---|
81 | if( !(*this)[i]->Equals( actualTypeParametersForThisProc, *params[i], isContravariant ) ){
|
---|
82 | return false;
|
---|
83 | }
|
---|
84 | }
|
---|
85 |
|
---|
86 | return true;
|
---|
87 | }
|
---|