@@ -62,18 +62,10 @@ module Reflect {
62
62
this .hasQualifiedName ( "reflect" , "Value" , "Addr" ) and
63
63
( inp .isReceiver ( ) and outp .isResult ( ) )
64
64
or
65
- // signature: func (Value).Bool() bool
66
- this .hasQualifiedName ( "reflect" , "Value" , "Bool" ) and
67
- ( inp .isReceiver ( ) and outp .isResult ( ) )
68
- or
69
65
// signature: func (Value).Bytes() []byte
70
66
this .hasQualifiedName ( "reflect" , "Value" , "Bytes" ) and
71
67
( inp .isReceiver ( ) and outp .isResult ( ) )
72
68
or
73
- // signature: func (Value).Complex() complex128
74
- this .hasQualifiedName ( "reflect" , "Value" , "Complex" ) and
75
- ( inp .isReceiver ( ) and outp .isResult ( ) )
76
- or
77
69
// signature: func (Value).Convert(t Type) Value
78
70
this .hasQualifiedName ( "reflect" , "Value" , "Convert" ) and
79
71
( inp .isReceiver ( ) and outp .isResult ( ) )
@@ -98,18 +90,10 @@ module Reflect {
98
90
this .hasQualifiedName ( "reflect" , "Value" , "FieldByNameFunc" ) and
99
91
( inp .isReceiver ( ) and outp .isResult ( ) )
100
92
or
101
- // signature: func (Value).Float() float64
102
- this .hasQualifiedName ( "reflect" , "Value" , "Float" ) and
103
- ( inp .isReceiver ( ) and outp .isResult ( ) )
104
- or
105
93
// signature: func (Value).Index(i int) Value
106
94
this .hasQualifiedName ( "reflect" , "Value" , "Index" ) and
107
95
( inp .isReceiver ( ) and outp .isResult ( ) )
108
96
or
109
- // signature: func (Value).Int() int64
110
- this .hasQualifiedName ( "reflect" , "Value" , "Int" ) and
111
- ( inp .isReceiver ( ) and outp .isResult ( ) )
112
- or
113
97
// signature: func (Value).Interface() (i interface{})
114
98
this .hasQualifiedName ( "reflect" , "Value" , "Interface" ) and
115
99
( inp .isReceiver ( ) and outp .isResult ( ) )
@@ -154,26 +138,10 @@ module Reflect {
154
138
this .hasQualifiedName ( "reflect" , "Value" , "Set" ) and
155
139
( inp .isParameter ( 0 ) and outp .isReceiver ( ) )
156
140
or
157
- // signature: func (Value).SetBool(x bool)
158
- this .hasQualifiedName ( "reflect" , "Value" , "SetBool" ) and
159
- ( inp .isParameter ( 0 ) and outp .isReceiver ( ) )
160
- or
161
141
// signature: func (Value).SetBytes(x []byte)
162
142
this .hasQualifiedName ( "reflect" , "Value" , "SetBytes" ) and
163
143
( inp .isParameter ( 0 ) and outp .isReceiver ( ) )
164
144
or
165
- // signature: func (Value).SetComplex(x complex128)
166
- this .hasQualifiedName ( "reflect" , "Value" , "SetComplex" ) and
167
- ( inp .isParameter ( 0 ) and outp .isReceiver ( ) )
168
- or
169
- // signature: func (Value).SetFloat(x float64)
170
- this .hasQualifiedName ( "reflect" , "Value" , "SetFloat" ) and
171
- ( inp .isParameter ( 0 ) and outp .isReceiver ( ) )
172
- or
173
- // signature: func (Value).SetInt(x int64)
174
- this .hasQualifiedName ( "reflect" , "Value" , "SetInt" ) and
175
- ( inp .isParameter ( 0 ) and outp .isReceiver ( ) )
176
- or
177
145
// signature: func (Value).SetMapIndex(key Value, elem Value)
178
146
this .hasQualifiedName ( "reflect" , "Value" , "SetMapIndex" ) and
179
147
( inp .isParameter ( _) and outp .isReceiver ( ) )
@@ -186,10 +154,6 @@ module Reflect {
186
154
this .hasQualifiedName ( "reflect" , "Value" , "SetString" ) and
187
155
( inp .isParameter ( 0 ) and outp .isReceiver ( ) )
188
156
or
189
- // signature: func (Value).SetUint(x uint64)
190
- this .hasQualifiedName ( "reflect" , "Value" , "SetUint" ) and
191
- ( inp .isParameter ( 0 ) and outp .isReceiver ( ) )
192
- or
193
157
// signature: func (Value).Slice(i int, j int) Value
194
158
this .hasQualifiedName ( "reflect" , "Value" , "Slice" ) and
195
159
( inp .isReceiver ( ) and outp .isResult ( ) )
@@ -210,10 +174,6 @@ module Reflect {
210
174
this .hasQualifiedName ( "reflect" , "Value" , "TrySend" ) and
211
175
( inp .isParameter ( 0 ) and outp .isReceiver ( ) )
212
176
or
213
- // signature: func (Value).Uint() uint64
214
- this .hasQualifiedName ( "reflect" , "Value" , "Uint" ) and
215
- ( inp .isReceiver ( ) and outp .isResult ( ) )
216
- or
217
177
// signature: func (Value).UnsafeAddr() uintptr
218
178
this .hasQualifiedName ( "reflect" , "Value" , "UnsafeAddr" ) and
219
179
( inp .isReceiver ( ) and outp .isResult ( ) )
0 commit comments