public interface InvocationGraphNodeFactory
creating invocation graph nodes
-
Method Summary
Modifier and TypeMethodDescriptionnewNode(Function function, InvocationGraphNode parent, AssignExprIF returnTo, AssignExprIF... actualParams) creates a new invocation graph node
-
Method Details
-
newNode
InvocationGraphNode newNode(Function function, InvocationGraphNode parent, AssignExprIF returnTo, AssignExprIF... actualParams) creates a new invocation graph node- Parameters:
function- theFunctionthat is associated with the nodeparent- the parent node of the generated node, null if this node is associated with the "main" functionreturnTo- the expression abstraction that will take the returned value after returning from the associated function callactualParams- the sequence (as a java array) of actual parameter abstractionscall- theFunctionCallNoderepresenting the lexical call that is associated with this node- Returns:
-