test/tools/javac/annotations/typeAnnotations/referenceinfos/ExceptionParameters.java

Wed, 15 Jan 2014 13:49:57 +0100

author
jlahoda
date
Wed, 15 Jan 2014 13:49:57 +0100
changeset 2303
dac1b0a17386
parent 1755
ddb4a2bfcd82
child 2525
2eb010b6cb22
permissions
-rw-r--r--

8028576: Incorrect RuntimeVisibleTypeAnnotations for exception parameters when not generating debuging info
Summary: The exception parameters with type annotations need to be added into the varBuffer even if not generating debug info
Reviewed-by: jjg, emc

jjg@1521 1 /*
jlahoda@2303 2 * Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved.
jjg@1521 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
jjg@1521 4 *
jjg@1521 5 * This code is free software; you can redistribute it and/or modify it
jjg@1521 6 * under the terms of the GNU General Public License version 2 only, as
jjg@1521 7 * published by the Free Software Foundation.
jjg@1521 8 *
jjg@1521 9 * This code is distributed in the hope that it will be useful, but WITHOUT
jjg@1521 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
jjg@1521 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
jjg@1521 12 * version 2 for more details (a copy is included in the LICENSE file that
jjg@1521 13 * accompanied this code).
jjg@1521 14 *
jjg@1521 15 * You should have received a copy of the GNU General Public License version
jjg@1521 16 * 2 along with this work; if not, write to the Free Software Foundation,
jjg@1521 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
jjg@1521 18 *
jjg@1521 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
jjg@1521 20 * or visit www.oracle.com if you need additional information or have any
jjg@1521 21 * questions.
jjg@1521 22 */
jjg@1521 23
jjg@1521 24 import static com.sun.tools.classfile.TypeAnnotation.TargetType.*;
jjg@1521 25
jjg@1521 26 /*
jjg@1521 27 * @test
jlahoda@2303 28 * @bug 8028576
jjg@1521 29 * @summary Test population of reference info for exception parameters
jjg@1521 30 * @author Werner Dietl
jjg@1521 31 * @compile -g Driver.java ReferenceInfoUtil.java ExceptionParameters.java
jjg@1521 32 * @run main Driver ExceptionParameters
jjg@1521 33 */
jjg@1521 34 public class ExceptionParameters {
jjg@1521 35
jjg@1521 36 @TADescription(annotation = "TA", type = EXCEPTION_PARAMETER, exceptionIndex = 0)
jjg@1521 37 public String exception() {
jjg@1521 38 return "void exception() { try { new Object(); } catch(@TA Exception e) { } }";
jjg@1521 39 }
jjg@1521 40
jjg@1521 41 @TADescription(annotation = "TA", type = EXCEPTION_PARAMETER, exceptionIndex = 0)
jjg@1521 42 public String finalException() {
jjg@1521 43 return "void finalException() { try { new Object(); } catch(final @TA Exception e) { } }";
jjg@1521 44 }
jjg@1521 45
jjg@1521 46 @TADescriptions({
jjg@1521 47 @TADescription(annotation = "TA", type = EXCEPTION_PARAMETER, exceptionIndex = 0),
jjg@1521 48 @TADescription(annotation = "TB", type = EXCEPTION_PARAMETER, exceptionIndex = 1),
jjg@1521 49 @TADescription(annotation = "TC", type = EXCEPTION_PARAMETER, exceptionIndex = 2)
jjg@1521 50 })
jjg@1755 51 public String multipleExceptions1() {
jjg@1521 52 return "void multipleExceptions() { " +
jjg@1521 53 "try { new Object(); } catch(@TA Exception e) { }" +
jjg@1521 54 "try { new Object(); } catch(@TB Exception e) { }" +
jjg@1521 55 "try { new Object(); } catch(@TC Exception e) { }" +
jjg@1521 56 " }";
jjg@1521 57 }
jjg@1755 58
jjg@1755 59 @TADescriptions({
jjg@1755 60 @TADescription(annotation = "TA", type = EXCEPTION_PARAMETER, exceptionIndex = 0),
jjg@1755 61 @TADescription(annotation = "TB", type = EXCEPTION_PARAMETER, exceptionIndex = 1),
jjg@1755 62 @TADescription(annotation = "TC", type = EXCEPTION_PARAMETER, exceptionIndex = 2)
jjg@1755 63 })
jjg@1755 64 public String multipleExceptions2() {
jjg@1755 65 return "void multipleExceptions() { " +
jjg@1755 66 " try { new Object(); " +
jjg@1755 67 " try { new Object(); " +
jjg@1755 68 " try { new Object(); } catch(@TA Exception e) { }" +
jjg@1755 69 " } catch(@TB Exception e) { }" +
jjg@1755 70 " } catch(@TC Exception e) { }" +
jjg@1755 71 "}";
jjg@1755 72 }
jjg@1755 73
jjg@1755 74 @TADescriptions({
jjg@1755 75 @TADescription(annotation = "TA", type = EXCEPTION_PARAMETER, exceptionIndex = 0),
jjg@1755 76 @TADescription(annotation = "TB", type = EXCEPTION_PARAMETER, exceptionIndex = 1),
jjg@1755 77 @TADescription(annotation = "TC", type = EXCEPTION_PARAMETER, exceptionIndex = 2)
jjg@1755 78 })
jjg@1755 79 public String multipleExceptions3() {
jjg@1755 80 return "void multipleExceptions() { " +
jjg@1755 81 " try { new Object(); " +
jjg@1755 82 " } catch(@TA Exception e1) { "+
jjg@1755 83 " try { new Object(); " +
jjg@1755 84 " } catch(@TB Exception e2) {" +
jjg@1755 85 " try { new Object(); } catch(@TC Exception e3) { }" +
jjg@1755 86 " }" +
jjg@1755 87 " }" +
jjg@1755 88 "}";
jjg@1755 89 }
jjg@1521 90 }

mercurial