File tree Expand file tree Collapse file tree
javascript/ql/src/semmle/javascript Expand file tree Collapse file tree Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments