Searched defs:Infer (Results 1 - 1 of 1) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DInfer.java48 public class Infer { class
49 protected static final Context.Key<Infer> inferKey =
50 new Context.Key<Infer>();
61 public static Infer instance(Context context) {
62 Infer instance = context.get(inferKey);
64 instance = new Infer(context);
68 protected Infer(Context context) { method in class:Infer
514 * type - when the return type is instantiated (see Infer.instantiateExpr)

Completed in 32 milliseconds