We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e7179c commit ce8ab0eCopy full SHA for ce8ab0e
java/ql/test/utils/model-generator/typebasedflow/CaptureTypeBasedSummaryModels.ql
@@ -10,15 +10,15 @@ private string flows() { exists(TypeBasedFlowTargetApi api | result = captureFlo
10
query predicate unexpectedSummary(string msg) {
11
exists(string flow |
12
flow = flows() and
13
- not exists(string e | e = expects() and e = flow) and
+ not flow = expects() and
14
msg = "Unexpected summary found: " + flow
15
)
16
}
17
18
query predicate expectedSummary(string msg) {
19
exists(string e |
20
e = expects() and
21
- not exists(string flow | flow = flows() and e = flow) and
+ not e = flows() and
22
msg = "Expected summary missing: " + e
23
24
0 commit comments