Merge branch 'main' into patch-1

This commit is contained in:
mc
2022-08-04 10:13:23 +01:00
committed by GitHub

View File

@@ -19,8 +19,9 @@ private predicate runner(Method m, int n, Method runmethod) {
exists(Parameter p, MethodAccess ma, int j |
p = m.getParameter(n) and
ma.getEnclosingCallable() = m and
runner(ma.getMethod().getSourceDeclaration(), j, _) and
ma.getArgument(j) = p.getAnAccess()
runner(pragma[only_bind_into](ma.getMethod().getSourceDeclaration()),
pragma[only_bind_into](j), _) and
ma.getArgument(pragma[only_bind_into](j)) = p.getAnAccess()
)
)
}