langtools/test/tools/javac/annotations/typeAnnotations/referenceinfos/MultiCatch.java
author mchung
Wed, 27 May 2015 13:25:18 -0700
changeset 30846 2b3f379840f0
parent 30730 d3ce7619db2c
permissions -rw-r--r--
8074432: Move jdeps and javap to jdk.jdeps module Reviewed-by: jjg, alanb, erikj
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
     1
/*
30730
d3ce7619db2c 8076543: Add @modules as needed to the langtools tests
akulyakh
parents: 24896
diff changeset
     2
 * Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
     4
 *
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
     7
 * published by the Free Software Foundation.
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
     8
 *
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
    13
 * accompanied this code).
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
    14
 *
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
    18
 *
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
    21
 * questions.
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
    22
 */
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
    23
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
    24
import static com.sun.tools.classfile.TypeAnnotation.TargetType.*;
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
    25
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
    26
/*
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
    27
 * @test
24896
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    28
 * @bug 8006732 8006775 8042451
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
    29
 * @summary Test population of reference info for multicatch exception parameters
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
    30
 * @author Werner Dietl
30846
2b3f379840f0 8074432: Move jdeps and javap to jdk.jdeps module
mchung
parents: 30730
diff changeset
    31
 * @modules jdk.jdeps/com.sun.tools.classfile
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
    32
 * @compile -g Driver.java ReferenceInfoUtil.java MultiCatch.java
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
    33
 * @run main Driver MultiCatch
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
    34
 */
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
    35
public class MultiCatch {
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
    36
24896
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    37
    @TADescription(annotation = "TA", type = EXCEPTION_PARAMETER, exceptionIndex = 0)
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    38
    @TADescription(annotation = "TB", type = EXCEPTION_PARAMETER, exceptionIndex = 1)
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
    39
    public String multiCatch1() {
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
    40
        return "void multiCatch1() { " +
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
    41
            "try { new Object(); } catch (@TA NullPointerException | @TB IndexOutOfBoundsException e) { e.toString(); } }";
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
    42
    }
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
    43
24896
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    44
    @TADescription(annotation = "TA", type = EXCEPTION_PARAMETER, exceptionIndex = 0)
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    45
    @TADescription(annotation = "TB", type = EXCEPTION_PARAMETER, exceptionIndex = 1)
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    46
    @TADescription(annotation = "TC", type = EXCEPTION_PARAMETER, exceptionIndex = 2)
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
    47
    public String multiCatch2() {
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
    48
        return "void multiCatch2() { " +
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
    49
            "try { new Object(); } catch (@TA NullPointerException | @TB IndexOutOfBoundsException | @TC IllegalArgumentException e) { e.toString(); } }";
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
    50
    }
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
    51
24896
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    52
    @TADescription(annotation = "TA", type = EXCEPTION_PARAMETER, exceptionIndex = 1)
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    53
    @TADescription(annotation = "TB", type = EXCEPTION_PARAMETER, exceptionIndex = 1)
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    54
    @TADescription(annotation = "TC", type = EXCEPTION_PARAMETER, exceptionIndex = 2)
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    55
    @TADescription(annotation = "TD", type = EXCEPTION_PARAMETER, exceptionIndex = 2)
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    56
    @TADescription(annotation = "TE", type = EXCEPTION_PARAMETER, exceptionIndex = 3)
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 17544
diff changeset
    57
    public String multiCatch3() {
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 17544
diff changeset
    58
        return "void multiCatch3() { " +
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 17544
diff changeset
    59
            "try { new Object(); } catch (NullPointerException e1) {}" +
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 17544
diff changeset
    60
            "try { new Object(); } catch (@TA @TB NullPointerException | @TC @TD IndexOutOfBoundsException | @TE IllegalArgumentException e2) { e2.toString(); } }";
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 17544
diff changeset
    61
    }
24896
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    62
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    63
    @TADescription(annotation = "RTAs", type = EXCEPTION_PARAMETER, exceptionIndex = 0)
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    64
    @TADescription(annotation = "RTBs", type = EXCEPTION_PARAMETER, exceptionIndex = 1)
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    65
    public String multiCatchRepeatableAnnotation1() {
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    66
        return "void multiCatch1() { " +
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    67
                "try { new Object(); } catch (@RTA @RTA NullPointerException |" +
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    68
                " @RTB @RTB IndexOutOfBoundsException e) { e.toString(); } }";
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    69
    }
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    70
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    71
    @TADescription(annotation = "RTAs", type = EXCEPTION_PARAMETER, exceptionIndex = 0)
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    72
    @TADescription(annotation = "RTBs", type = EXCEPTION_PARAMETER, exceptionIndex = 1)
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    73
    @TADescription(annotation = "RTCs", type = EXCEPTION_PARAMETER, exceptionIndex = 2)
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    74
    public String multiCatchRepeatableAnnotation2() {
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    75
        return "void multiCatch2() { " +
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    76
                "try { new Object(); } catch (@RTA @RTA NullPointerException |" +
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    77
                " @RTB @RTB IndexOutOfBoundsException | @RTC @RTC IllegalArgumentException e) { e.toString(); } }";
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    78
    }
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    79
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    80
    @TADescription(annotation = "RTAs", type = EXCEPTION_PARAMETER, exceptionIndex = 1)
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    81
    @TADescription(annotation = "RTBs", type = EXCEPTION_PARAMETER, exceptionIndex = 1)
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    82
    @TADescription(annotation = "RTCs", type = EXCEPTION_PARAMETER, exceptionIndex = 2)
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    83
    @TADescription(annotation = "RTDs", type = EXCEPTION_PARAMETER, exceptionIndex = 2)
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    84
    @TADescription(annotation = "RTEs", type = EXCEPTION_PARAMETER, exceptionIndex = 3)
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    85
    public String multiCatchRepeatableAnnotation3() {
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    86
        return "void multiCatch3() { " +
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    87
                "try { new Object(); } catch (NullPointerException e1) {}" +
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    88
                "try { new Object(); } catch (@RTA @RTA @RTB @RTB NullPointerException |" +
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    89
                " @RTC @RTC @RTD @RTD IndexOutOfBoundsException |" +
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    90
                " @RTE @RTE IllegalArgumentException e2) { e2.toString(); } }";
986d876a9121 8042451: Write tests for all possible kinds of type annotation
aeremeev
parents: 21498
diff changeset
    91
    }
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents:
diff changeset
    92
}