edu.cmu.cs.crystal.tac
Interface InvocationInstruction

All Superinterfaces:
AssignmentInstruction, TACInstruction, TACInvocation
All Known Subinterfaces:
MethodCallInstruction, NewObjectInstruction

public interface InvocationInstruction
extends AssignmentInstruction, TACInvocation

Abstract x = call(z1, ..., zn).

Author:
Kevin Bierhoff

Method Summary
 ASTNode getNode()
          Returns the node this instruction is for.
 
Methods inherited from interface edu.cmu.cs.crystal.tac.AssignmentInstruction
getTarget
 
Methods inherited from interface edu.cmu.cs.crystal.tac.TACInvocation
getArgOperands, resolveBinding
 
Methods inherited from interface edu.cmu.cs.crystal.tac.TACInstruction
transfer, transfer
 

Method Detail

getNode

ASTNode getNode()
Returns the node this instruction is for. Should be of type Expression. Usually, one instruction exists per AST node, but can be more when AST nodes are desugared, such as for post-increment.

Specified by:
getNode in interface TACInstruction
Returns:
the node this instruction is for.
See Also:
TACInstruction.getNode()