Skip to content

Commit c48b529

Browse files
committed
JS: autoformat
1 parent 3bbe542 commit c48b529

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -251,8 +251,7 @@ private module NodeTracking {
251251
* That is, `arg` refers to a value defined in `f` or one of its callees.
252252
*/
253253
predicate higherOrderCall(
254-
DataFlow::Node arg, DataFlow::SourceNode callback, int i,
255-
PathSummary summary
254+
DataFlow::Node arg, DataFlow::SourceNode callback, int i, PathSummary summary
256255
) {
257256
// Summarized call
258257
exists(DataFlow::Node cb |
@@ -287,7 +286,7 @@ private module NodeTracking {
287286
* locally.
288287
*/
289288
private predicate flowIntoHigherOrderCall(
290-
DataFlow::Node pred, DataFlow::Node succ, PathSummary summary
289+
DataFlow::Node pred, DataFlow::Node succ, PathSummary summary
291290
) {
292291
exists(DataFlow::FunctionNode cb, int i, PathSummary oldSummary |
293292
higherOrderCall(pred, cb, i, oldSummary) and

0 commit comments

Comments
 (0)