Uses of Interface
edu.cmu.cs.crystal.tac.model.InvocationInstruction

Packages that use InvocationInstruction
edu.cmu.cs.crystal.simple This package is for creating very simple flow analyses; if you're new to flow analyses, start here. 
edu.cmu.cs.crystal.tac.model The interfaces for the three-address code (TAC) instructions and variables. 
 

Uses of InvocationInstruction in edu.cmu.cs.crystal.simple
 

Methods in edu.cmu.cs.crystal.simple with parameters of type InvocationInstruction
 LE AbstractingTransferFunction.transfer(InvocationInstruction instr, LE value)
           
 

Uses of InvocationInstruction in edu.cmu.cs.crystal.tac.model
 

Subinterfaces of InvocationInstruction in edu.cmu.cs.crystal.tac.model
 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.