Uses of Interface
edu.cmu.cs.crystal.tac.TACInvocation

Packages that use TACInvocation
edu.cmu.cs.crystal.tac The interfaces for the three-address code (TAC) instructions. 
 

Uses of TACInvocation in edu.cmu.cs.crystal.tac
 

Subinterfaces of TACInvocation in edu.cmu.cs.crystal.tac
 interface ConstructorCallInstruction
          x(y1, ..., yn), where x is "this" or "super".
 interface InvocationInstruction
          Abstract x = call(z1, ..., zn).
 interface MethodCallInstruction
          x = y.m(z1, ..., zn), where m is a method and y is possibly a type variable, in the case of a static method call.
 interface NewObjectInstruction
          x = new C(z1, ..., zn), including for anonymous inner classes.