We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c58947d commit bb858d3Copy full SHA for bb858d3
javascript/ql/src/semmle/javascript/dataflow/DataFlow.qll
@@ -1263,6 +1263,7 @@ module DataFlow {
1263
/**
1264
* Gets the data flow node corresponding to `e`.
1265
*/
1266
+ pragma[inline]
1267
ExprNode exprNode(Expr e) { result = valueNode(e) }
1268
1269
/** Gets the data flow node corresponding to `ssa`. */
javascript/ql/src/semmle/javascript/dataflow/Nodes.qll
@@ -19,6 +19,9 @@ private import internal.CallGraphs
19
20
class ExprNode extends DataFlow::ValueNode {
21
override Expr astNode;
22
+
23
+ pragma[nomagic]
24
+ ExprNode() { any() }
25
}
26
27
0 commit comments