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 97694bc commit b549205Copy full SHA for b549205
java/ql/src/utils/GenerateFlowTestCase.qll
@@ -242,13 +242,13 @@ class TestCase extends TTestCase {
242
(i = -1 or exists(callable.getParameter(i))) and
243
if baseInput = SummaryComponentStack::argument(i)
244
then result = "in"
245
- else (
+ else
246
if baseOutput = SummaryComponentStack::argument(i)
247
then result = "out"
248
249
- if i = -1 then result = "instance" else result = this.getFiller(i)
250
- )
251
+ if i = -1
+ then result = "instance"
+ else result = this.getFiller(i)
252
}
253
254
/**
0 commit comments