@@ -231,18 +231,18 @@ query predicate test27(ConstructedType ct, UnboundGenericType ugt, UnboundGeneri
231231
232232query predicate test28 ( UnboundGeneric ug , string s ) {
233233 ug .fromSource ( ) and
234- s = ug . getFullyQualifiedNameWithTypes ( )
234+ s = getFullyQualifiedNameWithTypes ( ug )
235235}
236236
237237query predicate test29 ( ConstructedGeneric cg , string s ) {
238238 cg .fromSource ( ) and
239- s = cg . getFullyQualifiedNameWithTypes ( )
239+ s = getFullyQualifiedNameWithTypes ( cg )
240240}
241241
242242query predicate test30 ( Declaration d , string s ) {
243243 d .fromSource ( ) and
244244 d instanceof @generic and
245- s = d . getFullyQualifiedNameWithTypes ( ) and
245+ s = getFullyQualifiedNameWithTypes ( d ) and
246246 d != d .getUnboundDeclaration ( ) and
247247 not d instanceof Generic
248248}
@@ -263,21 +263,21 @@ query predicate test33(ConstructedMethod cm, string s1, string s2) {
263263 exists ( string namespace , string type , string name |
264264 cm .hasFullyQualifiedName ( namespace , type , name ) and s1 = getQualifiedName ( namespace , type , name )
265265 ) and
266- cm . getFullyQualifiedNameWithTypes ( ) = s2
266+ getFullyQualifiedNameWithTypes ( cm ) = s2
267267}
268268
269269query predicate test34 ( UnboundGeneric ug , string s1 , string s2 ) {
270270 ug .fromSource ( ) and
271271 exists ( string qualifier , string name |
272272 ug .hasFullyQualifiedName ( qualifier , name ) and s1 = getQualifiedName ( qualifier , name )
273273 ) and
274- ug . getFullyQualifiedNameWithTypes ( ) = s2
274+ getFullyQualifiedNameWithTypes ( ug ) = s2
275275}
276276
277277query predicate test35 ( UnboundGenericMethod gm , string s1 , string s2 ) {
278278 gm .fromSource ( ) and
279279 exists ( string namespace , string type , string name |
280280 gm .hasFullyQualifiedName ( namespace , type , name ) and s1 = getQualifiedName ( namespace , type , name )
281281 ) and
282- gm . getFullyQualifiedNameWithTypes ( ) = s2
282+ getFullyQualifiedNameWithTypes ( gm ) = s2
283283}
0 commit comments