langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Infer.java
changeset 42828 cce89649f958
parent 42416 1cfad0990b99
child 43761 f50592785b30
equal deleted inserted replaced
42827:36468b5fa7f4 42828:cce89649f958
   118         allowGraphInference = Source.instance(context).allowGraphInference()
   118         allowGraphInference = Source.instance(context).allowGraphInference()
   119                 && options.isUnset("useLegacyInference");
   119                 && options.isUnset("useLegacyInference");
   120         dependenciesFolder = options.get("debug.dumpInferenceGraphsTo");
   120         dependenciesFolder = options.get("debug.dumpInferenceGraphsTo");
   121         pendingGraphs = List.nil();
   121         pendingGraphs = List.nil();
   122 
   122 
   123         emptyContext = new InferenceContext(this, List.<Type>nil());
   123         emptyContext = new InferenceContext(this, List.nil());
   124     }
   124     }
   125 
   125 
   126     /** A value for prototypes that admit any type, including polymorphic ones. */
   126     /** A value for prototypes that admit any type, including polymorphic ones. */
   127     public static final Type anyPoly = new JCNoType();
   127     public static final Type anyPoly = new JCNoType();
   128 
   128