@@ -4650,21 +4650,21 @@ private module Impl {
46504650 private Element getImmediateChildOfNominalTypeDecl (
46514651 NominalTypeDecl e , int index , string partialPredicateCall
46524652 ) {
4653- exists ( int b , int bIterableDeclContext , int bGenericTypeDecl , int n |
4653+ exists ( int b , int bGenericTypeDecl , int bIterableDeclContext , int n |
46544654 b = 0 and
4655- bIterableDeclContext =
4656- b + 1 + max ( int i | i = - 1 or exists ( getImmediateChildOfIterableDeclContext ( e , i , _) ) | i ) and
46574655 bGenericTypeDecl =
4658- bIterableDeclContext + 1 +
4659- max ( int i | i = - 1 or exists ( getImmediateChildOfGenericTypeDecl ( e , i , _) ) | i ) and
4660- n = bGenericTypeDecl and
4656+ b + 1 + max ( int i | i = - 1 or exists ( getImmediateChildOfGenericTypeDecl ( e , i , _) ) | i ) and
4657+ bIterableDeclContext =
4658+ bGenericTypeDecl + 1 +
4659+ max ( int i | i = - 1 or exists ( getImmediateChildOfIterableDeclContext ( e , i , _) ) | i ) and
4660+ n = bIterableDeclContext and
46614661 (
46624662 none ( )
46634663 or
4664- result = getImmediateChildOfIterableDeclContext ( e , index - b , partialPredicateCall )
4664+ result = getImmediateChildOfGenericTypeDecl ( e , index - b , partialPredicateCall )
46654665 or
46664666 result =
4667- getImmediateChildOfGenericTypeDecl ( e , index - bIterableDeclContext , partialPredicateCall )
4667+ getImmediateChildOfIterableDeclContext ( e , index - bGenericTypeDecl , partialPredicateCall )
46684668 )
46694669 )
46704670 }
0 commit comments