Skip to content

Commit 6d6379f

Browse files
author
Esben Sparre Andreasen
committed
JS: address review comments
1 parent bf048e7 commit 6d6379f

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

javascript/ql/src/semmle/javascript/Concepts.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ abstract class DatabaseAccess extends DataFlow::Node {
7272
abstract class PersistentReadAccess extends DataFlow::Node {
7373

7474
/**
75-
* Gets the corresponding persistent write, if any.
75+
* Gets a corresponding persistent write, if any.
7676
*/
7777
abstract PersistentWriteAccess getAWrite();
7878

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,9 @@ module TaintTracking {
232232
}
233233
}
234234

235+
/**
236+
* A taint propagating data flow edge through persistent storage.
237+
*/
235238
private class StorageTaintStep extends AdditionalTaintStep {
236239

237240
PersistentReadAccess read;

0 commit comments

Comments
 (0)