@@ -52,7 +52,8 @@ module Input implements InputSig<Location, DataFlowImplSpecific::CppDataFlow> {
5252 * Supports ranges (`Argument[x..y]`), qualifiers (`Argument[-1]`), indirections
5353 * (`Argument[*x]`) and combinations (such as `Argument[**0..1]`).
5454 */
55- private bindingset [ argString] TPosition decodePosition ( string argString ) {
55+ bindingset [ argString]
56+ private TPosition decodePosition ( string argString ) {
5657 exists ( int indirection , string posString , int pos |
5758 argString = repeatStars ( indirection ) + posString and
5859 pos = AccessPath:: parseInt ( posString ) and
@@ -118,7 +119,9 @@ module SourceSinkInterpretationInput implements
118119 * Holds if an external source specification exists for `e` with output specification
119120 * `output`, kind `kind`, and provenance `provenance`.
120121 */
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+ ) {
122125 exists (
123126 string namespace , string type , boolean subtypes , string name , string signature , string ext
124127 |
@@ -131,7 +134,9 @@ module SourceSinkInterpretationInput implements
131134 * Holds if an external sink specification exists for `e` with input specification
132135 * `input`, kind `kind` and provenance `provenance`.
133136 */
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+ ) {
135140 exists (
136141 string package , string type , boolean subtypes , string name , string signature , string ext
137142 |
0 commit comments