File tree 5 files changed +0
-10
lines changed
csharp/ql/test/library-tests/dataflow
java/ql/test/library-tests/frameworks/guava/handwritten
shared/dataflow/codeql/dataflow/test
swift/ql/test/TestUtilities 5 files changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -14,8 +14,6 @@ module ArrayFlowConfig implements DataFlow::ConfigSig {
14
14
mc .getAnArgument ( ) = sink .asExpr ( )
15
15
)
16
16
}
17
-
18
- int fieldFlowBranchLimit ( ) { result = 100 }
19
17
}
20
18
21
19
module ArrayFlow = DataFlow:: Global< ArrayFlowConfig > ;
Original file line number Diff line number Diff line change @@ -18,8 +18,6 @@ module TypesConfig implements DataFlow::ConfigSig {
18
18
mc .getAnArgument ( ) = sink .asExpr ( )
19
19
)
20
20
}
21
-
22
- int fieldFlowBranchLimit ( ) { result = 1000 }
23
21
}
24
22
25
23
import ValueFlowTest< TypesConfig >
Original file line number Diff line number Diff line change @@ -18,8 +18,6 @@ module ValueFlowConfig implements DataFlow::ConfigSig {
18
18
predicate isSink ( DataFlow:: Node n ) {
19
19
exists ( MethodCall ma | ma .getMethod ( ) .hasName ( "sink" ) | n .asExpr ( ) = ma .getAnArgument ( ) )
20
20
}
21
-
22
- int fieldFlowBranchLimit ( ) { result = 100 }
23
21
}
24
22
25
23
module ValueFlow = DataFlow:: Global< ValueFlowConfig > ;
Original file line number Diff line number Diff line change @@ -55,8 +55,6 @@ module InlineFlowTestMake<
55
55
predicate isSource ( DataFlowLang:: Node source ) { Impl:: defaultSource ( source ) }
56
56
57
57
predicate isSink ( DataFlowLang:: Node sink ) { Impl:: defaultSink ( sink ) }
58
-
59
- int fieldFlowBranchLimit ( ) { result = 1000 }
60
58
}
61
59
62
60
private module NoFlowConfig implements DataFlow:: ConfigSig {
Original file line number Diff line number Diff line change @@ -61,8 +61,6 @@ module DefaultFlowConfig implements DataFlow::ConfigSig {
61
61
predicate isSource ( DataFlow:: Node source ) { defaultSource ( source ) }
62
62
63
63
predicate isSink ( DataFlow:: Node sink ) { defaultSink ( sink ) }
64
-
65
- int fieldFlowBranchLimit ( ) { result = 1000 }
66
64
}
67
65
68
66
module NoFlowConfig implements DataFlow:: ConfigSig {
You can’t perform that action at this time.
0 commit comments