File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2226,9 +2226,7 @@ class ModuleExpr extends TModuleExpr, TypeRef {
22262226 or
22272227 not exists ( me .getName ( ) ) and result = me .getChild ( ) .( QL:: SimpleId ) .getValue ( )
22282228 or
2229- exists ( QL:: ModuleInstantiation instantiation | instantiation .getParent ( ) = me |
2230- result = instantiation .getName ( ) .getChild ( ) .getValue ( )
2231- )
2229+ result = me .getChild ( ) .( QL:: ModuleInstantiation ) .getName ( ) .getChild ( ) .getValue ( )
22322230 }
22332231
22342232 /**
@@ -2263,9 +2261,7 @@ class ModuleExpr extends TModuleExpr, TypeRef {
22632261 * The result is either a `PredicateExpr` or a `TypeExpr`.
22642262 */
22652263 SignatureExpr getArgument ( int i ) {
2266- exists ( QL:: ModuleInstantiation instantiation | instantiation .getParent ( ) = me |
2267- result .toQL ( ) = instantiation .getChild ( i )
2268- )
2264+ result .toQL ( ) = me .getChild ( ) .( QL:: ModuleInstantiation ) .getChild ( i )
22692265 }
22702266}
22712267
You can’t perform that action at this time.
0 commit comments