Skip to content

Commit 8b3ca73

Browse files
committed
autoformat
1 parent 081b03c commit 8b3ca73

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

javascript/ql/src/semmle/javascript/GlobalAccessPaths.qll

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -463,9 +463,9 @@ module AccessPath {
463463
type = AccessPathWrite() and
464464
result = getAWriteNode(root, path)
465465
}
466-
466+
467467
/**
468-
* Gets a `ControlFlowNode` for a read to `path` from `root`.
468+
* Gets a `ControlFlowNode` for a read to `path` from `root`.
469469
*/
470470
private ControlFlowNode getAReadNode(Root root, string path) {
471471
exists(DataFlow::PropRead read | read.asExpr() = result |
@@ -475,7 +475,7 @@ module AccessPath {
475475
}
476476

477477
/**
478-
* Gets a `ControlFlowNode` for a write to `path` from `root`.
478+
* Gets a `ControlFlowNode` for a write to `path` from `root`.
479479
*/
480480
private ControlFlowNode getAWriteNode(Root root, string path) {
481481
result = root.getAPropertyWrite(path).getWriteNode()

0 commit comments

Comments
 (0)