@@ -52,7 +52,8 @@ module Input implements InputSig<Location, DataFlowImplSpecific::CppDataFlow> {
52
52
* Supports ranges (`Argument[x..y]`), qualifiers (`Argument[-1]`), indirections
53
53
* (`Argument[*x]`) and combinations (such as `Argument[**0..1]`).
54
54
*/
55
- private bindingset [ argString] TPosition decodePosition ( string argString ) {
55
+ bindingset [ argString]
56
+ private TPosition decodePosition ( string argString ) {
56
57
exists ( int indirection , string posString , int pos |
57
58
argString = repeatStars ( indirection ) + posString and
58
59
pos = AccessPath:: parseInt ( posString ) and
@@ -118,7 +119,9 @@ module SourceSinkInterpretationInput implements
118
119
* Holds if an external source specification exists for `e` with output specification
119
120
* `output`, kind `kind`, and provenance `provenance`.
120
121
*/
121
- predicate sourceElement ( SourceOrSinkElement e , string output , string kind , Public:: Provenance provenance ) {
122
+ predicate sourceElement (
123
+ SourceOrSinkElement e , string output , string kind , Public:: Provenance provenance
124
+ ) {
122
125
exists (
123
126
string namespace , string type , boolean subtypes , string name , string signature , string ext
124
127
|
@@ -131,7 +134,9 @@ module SourceSinkInterpretationInput implements
131
134
* Holds if an external sink specification exists for `e` with input specification
132
135
* `input`, kind `kind` and provenance `provenance`.
133
136
*/
134
- predicate sinkElement ( SourceOrSinkElement e , string input , string kind , Public:: Provenance provenance ) {
137
+ predicate sinkElement (
138
+ SourceOrSinkElement e , string input , string kind , Public:: Provenance provenance
139
+ ) {
135
140
exists (
136
141
string package , string type , boolean subtypes , string name , string signature , string ext
137
142
|
0 commit comments