We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25297cb commit d8e14a6Copy full SHA for d8e14a6
javascript/ql/lib/semmle/javascript/dataflow/internal/sharedlib/Ssa.qll
@@ -56,6 +56,11 @@ module SsaDataflowInput implements DataFlowIntegrationInputSig {
56
predicate hasCfgNode(js::BasicBlock bb, int i) { this = bb.getNode(i) }
57
}
58
59
+ predicate ssaDefHasSource(WriteDefinition def) {
60
+ // This library only handles use-use flow after a post-update, there are no definitions, only uses.
61
+ none()
62
+ }
63
+
64
predicate ssaDefAssigns(WriteDefinition def, Expr value) {
65
// This library only handles use-use flow after a post-update, there are no definitions, only uses.
66
none()
0 commit comments