@@ -31,7 +31,7 @@ class At extends SummarizedCallable {
3131
3232 override InstanceCall getACallSimple ( ) { result .getMethodName ( ) = "at" }
3333
34- override predicate propagatesFlowExt ( string input , string output , boolean preservesValue ) {
34+ override predicate propagatesFlow ( string input , string output , boolean preservesValue ) {
3535 preservesValue = true and
3636 input = "Argument[this].ArrayElement" and
3737 output = "ReturnValue"
@@ -45,7 +45,7 @@ class Concat extends SummarizedCallable {
4545
4646 override InstanceCall getACallSimple ( ) { result .getMethodName ( ) = "concat" }
4747
48- override predicate propagatesFlowExt ( string input , string output , boolean preservesValue ) {
48+ override predicate propagatesFlow ( string input , string output , boolean preservesValue ) {
4949 preservesValue = true and
5050 input = "Argument[this,0..].ArrayElement" and
5151 output = "ReturnValue.ArrayElement"
@@ -61,7 +61,7 @@ class Slice extends SummarizedCallable {
6161
6262 override InstanceCall getACallSimple ( ) { result .getMethodName ( ) = "slice" }
6363
64- override predicate propagatesFlowExt ( string input , string output , boolean preservesValue ) {
64+ override predicate propagatesFlow ( string input , string output , boolean preservesValue ) {
6565 preservesValue = true and
6666 input = "Argument[this].ArrayElement" and
6767 output = "ReturnValue.ArrayElement"
@@ -80,7 +80,7 @@ class Entries extends SummarizedCallable {
8080 result .getNumArgument ( ) = 0
8181 }
8282
83- override predicate propagatesFlowExt ( string input , string output , boolean preservesValue ) {
83+ override predicate propagatesFlow ( string input , string output , boolean preservesValue ) {
8484 preservesValue = true and
8585 (
8686 input = "Argument[this]." + [ "MapKey" , "SetElement" ] and
@@ -97,7 +97,7 @@ class ForEach extends SummarizedCallable {
9797
9898 override InstanceCall getACallSimple ( ) { result .getMethodName ( ) = "forEach" }
9999
100- override predicate propagatesFlowExt ( string input , string output , boolean preservesValue ) {
100+ override predicate propagatesFlow ( string input , string output , boolean preservesValue ) {
101101 preservesValue = true and
102102 /*
103103 * array.forEach(callbackfn, thisArg)
@@ -128,7 +128,7 @@ class Keys extends SummarizedCallable {
128128 result .getNumArgument ( ) = 0
129129 }
130130
131- override predicate propagatesFlowExt ( string input , string output , boolean preservesValue ) {
131+ override predicate propagatesFlow ( string input , string output , boolean preservesValue ) {
132132 preservesValue = true and
133133 input = "Argument[this]." + [ "MapKey" , "SetElement" ] and
134134 output = "ReturnValue.IteratorElement"
@@ -143,7 +143,7 @@ class Values extends SummarizedCallable {
143143 result .getNumArgument ( ) = 0
144144 }
145145
146- override predicate propagatesFlowExt ( string input , string output , boolean preservesValue ) {
146+ override predicate propagatesFlow ( string input , string output , boolean preservesValue ) {
147147 preservesValue = true and
148148 input = "Argument[this]." + [ "ArrayElement" , "SetElement" , "MapValue" ] and
149149 output = "ReturnValue.IteratorElement"
0 commit comments