Skip to content

Commit ccc879d

Browse files
committed
JS: Autoformat
1 parent e1bfc6c commit ccc879d

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

javascript/ql/src/semmle/javascript/dataflow/Configuration.qll

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,10 @@ private class SharedStepAsAdditionalFlowStep extends AdditionalFlowStep {
653653
any(SharedFlowStep st).step(pred, succ) and succ = this
654654
}
655655

656-
override predicate step(DataFlow::Node pred, DataFlow::Node succ, DataFlow::FlowLabel predlbl, DataFlow::FlowLabel succlbl) {
656+
override predicate step(
657+
DataFlow::Node pred, DataFlow::Node succ, DataFlow::FlowLabel predlbl,
658+
DataFlow::FlowLabel succlbl
659+
) {
657660
any(SharedFlowStep st).step(pred, succ, predlbl, succlbl) and succ = this
658661
}
659662
}

javascript/ql/src/semmle/javascript/dataflow/TaintTracking.qll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,6 @@ module TaintTracking {
225225
class SharedTaintStep extends Unit {
226226
// Each step relation in this class should have a cached version in the `Cached` module
227227
// and be included in the `sharedTaintStep` predicate.
228-
229228
/**
230229
* Holds if `pred` → `succ` should be considered a taint-propagating
231230
* data flow edge.

0 commit comments

Comments
 (0)