< prev index next >

langtools/test/tools/javac/flow/LVTHarness.java

Print this page




  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 7047734 8027660 8037937 8047719 8058708 8064857
  27  * @summary The LVT is not generated correctly during some try/catch scenarios
  28  *          javac crash while creating LVT entry for a local variable defined in
  29  *          an inner block
  30  * @library /tools/javac/lib
  31  * @modules jdk.compiler/com.sun.tools.classfile
  32  * @build JavacTestingAbstractProcessor LVTHarness
  33  * @run main LVTHarness
  34  */
  35 
  36 import java.io.File;
  37 import java.io.IOException;
  38 import java.lang.annotation.Annotation;
  39 import java.util.Set;
  40 import java.util.Arrays;
  41 import java.util.ArrayList;
  42 import java.util.Collections;
  43 import java.util.HashMap;
  44 import java.util.HashSet;
  45 import java.util.List;
  46 import java.util.Map;
  47 
  48 import javax.annotation.processing.RoundEnvironment;
  49 import javax.lang.model.element.Element;
  50 import javax.lang.model.element.TypeElement;
  51 import javax.tools.JavaCompiler;




  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 7047734 8027660 8037937 8047719 8058708 8064857
  27  * @summary The LVT is not generated correctly during some try/catch scenarios
  28  *          javac crash while creating LVT entry for a local variable defined in
  29  *          an inner block
  30  * @library /tools/javac/lib
  31  * @modules jdk.jdeps/com.sun.tools.classfile
  32  * @build JavacTestingAbstractProcessor LVTHarness
  33  * @run main LVTHarness
  34  */
  35 
  36 import java.io.File;
  37 import java.io.IOException;
  38 import java.lang.annotation.Annotation;
  39 import java.util.Set;
  40 import java.util.Arrays;
  41 import java.util.ArrayList;
  42 import java.util.Collections;
  43 import java.util.HashMap;
  44 import java.util.HashSet;
  45 import java.util.List;
  46 import java.util.Map;
  47 
  48 import javax.annotation.processing.RoundEnvironment;
  49 import javax.lang.model.element.Element;
  50 import javax.lang.model.element.TypeElement;
  51 import javax.tools.JavaCompiler;


< prev index next >