File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
javascript/ql/src/semmle/javascript Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -463,9 +463,9 @@ module AccessPath {
463
463
type = AccessPathWrite ( ) and
464
464
result = getAWriteNode ( root , path )
465
465
}
466
-
466
+
467
467
/**
468
- * Gets a `ControlFlowNode` for a read to `path` from `root`.
468
+ * Gets a `ControlFlowNode` for a read to `path` from `root`.
469
469
*/
470
470
private ControlFlowNode getAReadNode ( Root root , string path ) {
471
471
exists ( DataFlow:: PropRead read | read .asExpr ( ) = result |
@@ -475,7 +475,7 @@ module AccessPath {
475
475
}
476
476
477
477
/**
478
- * Gets a `ControlFlowNode` for a write to `path` from `root`.
478
+ * Gets a `ControlFlowNode` for a write to `path` from `root`.
479
479
*/
480
480
private ControlFlowNode getAWriteNode ( Root root , string path ) {
481
481
result = root .getAPropertyWrite ( path ) .getWriteNode ( )
You can’t perform that action at this time.
0 commit comments