Python: ObjectAPI.qll: getOrigin now returns a CFG

This commit is contained in:
Rebecca Valentine
2020-03-16 14:52:23 -07:00
parent 45e47b92a0
commit 34ab4efeda

View File

@@ -45,8 +45,8 @@ class Value extends TObject {
}
/** Gets the origin AST node for this value. */
AstNode getOrigin() {
result = this.(ObjectInternal).getOrigin().getNode()
ControlFlowNode getOrigin() {
result = this.(ObjectInternal).getOrigin()
}