Merge pull request #5624 from tausbn/python-make-callcfgnode-a-localsourcenode

Python: Improve `CallCfgNode` interface
This commit is contained in:
Rasmus Wriedt Larsen
2021-04-08 13:38:24 +02:00
committed by GitHub

View File

@@ -180,7 +180,7 @@ class CfgNode extends Node, TCfgNode {
}
/** A data-flow node corresponding to a `CallNode` in the control-flow graph. */
class CallCfgNode extends CfgNode {
class CallCfgNode extends CfgNode, LocalSourceNode {
override CallNode node;
/**