langtools/src/share/classes/com/sun/tools/javac/code/Type.java
changeset 14057 b4b0377b8dba
parent 14052 8b839ae9074b
child 14058 c7ec7facdd20
--- a/langtools/src/share/classes/com/sun/tools/javac/code/Type.java	Sat Sep 29 09:00:58 2012 -0700
+++ b/langtools/src/share/classes/com/sun/tools/javac/code/Type.java	Thu Oct 04 13:04:53 2012 +0100
@@ -75,6 +75,9 @@
     /** Constant type: no type at all. */
     public static final JCNoType noType = new JCNoType(NONE);
 
+    /** Constant type: special type to be used during recovery of deferred expressions. */
+    public static final JCNoType recoveryType = new JCNoType(NONE);
+
     /** If this switch is turned on, the names of type variables
      *  and anonymous classes are printed with hashcodes appended.
      */