Skip to content

Commit 850a45e

Browse files
committed
Foemay
1 parent 5ee86e9 commit 850a45e

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

shared/dataflow/codeql/dataflow/DataFlow.qll

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -703,7 +703,6 @@ module DataFlowMakeCore<LocationSig Location, InputSig<Location> Lang> {
703703
predicate flowToExpr(DataFlowExpr sink);
704704
}
705705

706-
707706
signature class PathNodeSig {
708707
/** Gets a textual representation of this element. */
709708
string toString();
@@ -1107,6 +1106,7 @@ module DataFlowMake<LocationSig Location, InputSig<Location> Lang> {
11071106
private import Lang
11081107
private import internal.DataFlowImpl::MakeImpl<Location, Lang>
11091108
private import internal.DataFlowImplStage1::MakeImplStage1<Location, Lang>
1109+
11101110
/**
11111111
* Constructs a global data flow computation.
11121112
*/
@@ -1120,6 +1120,7 @@ module DataFlowMake<LocationSig Location, InputSig<Location> Lang> {
11201120
predicate isAdditionalFlowStep(Node node1, Node node2, string model) {
11211121
Config::isAdditionalFlowStep(node1, node2) and model = "Config"
11221122
}
1123+
11231124
predicate observeOverlayInformedIncrementalMode() { none() }
11241125
}
11251126

@@ -1169,6 +1170,7 @@ module DataFlowMakeOverlay<LocationSig Location, InputSig<Location> Lang> {
11691170
private import Lang
11701171
private import internal.DataFlowImpl::MakeImpl<Location, Lang>
11711172
private import internal.DataFlowImplStage1::MakeImplStage1<Location, Lang>
1173+
11721174
/**
11731175
* Constructs a global data flow computation.
11741176
*/
@@ -1183,7 +1185,9 @@ module DataFlowMakeOverlay<LocationSig Location, InputSig<Location> Lang> {
11831185
Config::isAdditionalFlowStep(node1, node2) and model = "Config"
11841186
}
11851187

1186-
predicate observeOverlayInformedIncrementalMode() { not Config::observeDiffInformedIncrementalMode() }
1188+
predicate observeOverlayInformedIncrementalMode() {
1189+
not Config::observeDiffInformedIncrementalMode()
1190+
}
11871191
}
11881192

11891193
private module Stage1 = ImplStage1<C>;
@@ -1214,7 +1218,9 @@ module DataFlowMakeOverlay<LocationSig Location, InputSig<Location> Lang> {
12141218
Config::isAdditionalFlowStep(node1, state1, node2, state2) and model = "Config"
12151219
}
12161220

1217-
predicate observeOverlayInformedIncrementalMode() { not Config::observeDiffInformedIncrementalMode() }
1221+
predicate observeOverlayInformedIncrementalMode() {
1222+
not Config::observeDiffInformedIncrementalMode()
1223+
}
12181224
}
12191225

12201226
private module Stage1 = ImplStage1<C>;

0 commit comments

Comments
 (0)