Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fa34f8f

Browse files
committed
JS: replace dataflow -> data flow
1 parent 701e662 commit fa34f8f

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

javascript/ql/src/semmle/javascript/Closure.qll

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module Closure {
1616
}
1717

1818
/**
19-
* A dataflow node that returns the value of a closure namespace.
19+
* A data flow node that returns the value of a closure namespace.
2020
*/
2121
abstract class ClosureNamespaceAccess extends ClosureNamespaceRef, DataFlow::SourceNode { }
2222

@@ -30,7 +30,7 @@ module Closure {
3030
}
3131

3232
/**
33-
* Holds if `node` is the dataflow node for a top-level expression.
33+
* Holds if `node` is the data flow node for a top-level expression.
3434
*/
3535
private predicate isTopLevelExpr(DataFlow::Node node) {
3636
node.getTopLevel().getAChildStmt().(ExprStmt).getExpr().flow() = node
@@ -156,7 +156,7 @@ module Closure {
156156
}
157157

158158
/**
159-
* Gets the closure namespace path addressed by the given dataflow node, if any.
159+
* Gets the closure namespace path addressed by the given data flow node, if any.
160160
*/
161161
string getClosureNamespaceFromSourceNode(DataFlow::SourceNode node) {
162162
isClosureNamespace(result) and
@@ -188,7 +188,7 @@ module Closure {
188188
}
189189

190190
/**
191-
* Gets a dataflow node that refers to the given value exported from a Closure module.
191+
* Gets a data flow node that refers to the given value exported from a Closure module.
192192
*/
193193
DataFlow::SourceNode moduleImport(string moduleName) { getClosureNamespaceFromSourceNode(result) = moduleName }
194194
}

0 commit comments

Comments
 (0)