hotspot/test/runtime/ConstantPool/WithConfiguration.jcod
author coleenp
Mon, 20 Jun 2016 12:28:14 -0400
changeset 39398 16b3ed4012f8
permissions -rw-r--r--
8159470: Error message for ICCE for MethodHandle constant pool not helpful Summary: Reworded message and added test. Reviewed-by: hseigel, gtriantafill, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
39398
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
     1
/*
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
     2
 * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
     4
 *
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
     7
 * published by the Free Software Foundation.
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
     8
 *
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    13
 * accompanied this code).
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    14
 *
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    18
 *
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    21
 * questions.
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    22
 */
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    23
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    24
// This class has a MethodHandle constant that points to an incompatible Methodref constant
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    25
// (should be InterfaceMethodref)
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    26
// Throws ICCE/BootstrapMethodError
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    27
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    28
// public interface WithConfiguration {
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    29
//     String getLocation();
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    30
//     static WithConfiguration autoDetect() {
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    31
//         return () -> "$Default$";
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    32
//     }
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    33
// }
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    34
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    35
class WithConfiguration {
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    36
  0xCAFEBABE;
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    37
  0; // minor version
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    38
  53; // version
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    39
  [] { // Constant Pool
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    40
    ; // first element is empty
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    41
    InvokeDynamic 0s #18; // #1    
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    42
    String #19; // #2    
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    43
    class #20; // #3    
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    44
    class #21; // #4    
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    45
    Utf8 "getLocation"; // #5    
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    46
    Utf8 "()Ljava/lang/String;"; // #6    
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    47
    Utf8 "autoDetect"; // #7    
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    48
    Utf8 "()LWithConfiguration;"; // #8    
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    49
    Utf8 "Code"; // #9    
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    50
    Utf8 "LineNumberTable"; // #10    
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    51
    Utf8 "lambda$autoDetect$0"; // #11    
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    52
    Utf8 "SourceFile"; // #12    
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    53
    Utf8 "WithConfiguration.java"; // #13    
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    54
    Utf8 "BootstrapMethods"; // #14    
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    55
    MethodHandle 6b #22; // #15    
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    56
    MethodType #6; // #16    
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    57
    MethodHandle 6b #23; // #17    
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    58
    NameAndType #5 #8; // #18    
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    59
    Utf8 "$Default$"; // #19    
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    60
    Utf8 "WithConfiguration"; // #20    
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    61
    Utf8 "java/lang/Object"; // #21    
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    62
    Method #24 #25; // #22    
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    63
    Method #3 #26; // #23      THIS IS WRONG!!
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    64
    class #27; // #24    
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    65
    NameAndType #28 #32; // #25    
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    66
    NameAndType #11 #6; // #26    
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    67
    Utf8 "java/lang/invoke/LambdaMetafactory"; // #27    
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    68
    Utf8 "metafactory"; // #28    
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    69
    class #34; // #29    
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    70
    Utf8 "Lookup"; // #30    
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    71
    Utf8 "InnerClasses"; // #31    
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    72
    Utf8 "(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;"; // #32    
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    73
    class #35; // #33    
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    74
    Utf8 "java/lang/invoke/MethodHandles$Lookup"; // #34    
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    75
    Utf8 "java/lang/invoke/MethodHandles"; // #35    
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    76
  } // Constant Pool
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    77
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    78
  0x0601; // access
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    79
  #3;// this_cpx
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    80
  #4;// super_cpx
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    81
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    82
  [] { // Interfaces
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    83
  } // Interfaces
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    84
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    85
  [] { // fields
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    86
  } // fields
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    87
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    88
  [] { // methods
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    89
    { // Member
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    90
      0x0401; // access
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    91
      #5; // name_cpx
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    92
      #6; // sig_cpx
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    93
      [] { // Attributes
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    94
      } // Attributes
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    95
    } // Member
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    96
    ;
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    97
    { // Member
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    98
      0x0009; // access
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
    99
      #7; // name_cpx
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   100
      #8; // sig_cpx
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   101
      [] { // Attributes
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   102
        Attr(#9) { // Code
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   103
          1; // max_stack
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   104
          0; // max_locals
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   105
          Bytes[]{
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   106
            0xBA00010000B0;
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   107
          };
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   108
          [] { // Traps
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   109
          } // end Traps
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   110
          [] { // Attributes
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   111
            Attr(#10) { // LineNumberTable
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   112
              [] { // LineNumberTable
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   113
                0  26;
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   114
              }
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   115
            } // end LineNumberTable
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   116
          } // Attributes
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   117
        } // end Code
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   118
      } // Attributes
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   119
    } // Member
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   120
    ;
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   121
    { // Member
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   122
      0x100A; // access
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   123
      #11; // name_cpx
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   124
      #6; // sig_cpx
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   125
      [] { // Attributes
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   126
        Attr(#9) { // Code
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   127
          1; // max_stack
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   128
          0; // max_locals
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   129
          Bytes[]{
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   130
            0x1202B0;
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   131
          };
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   132
          [] { // Traps
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   133
          } // end Traps
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   134
          [] { // Attributes
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   135
            Attr(#10) { // LineNumberTable
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   136
              [] { // LineNumberTable
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   137
                0  26;
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   138
              }
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   139
            } // end LineNumberTable
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   140
          } // Attributes
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   141
        } // end Code
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   142
      } // Attributes
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   143
    } // Member
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   144
  } // methods
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   145
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   146
  [] { // Attributes
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   147
    Attr(#12) { // SourceFile
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   148
      #13;
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   149
    } // end SourceFile
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   150
    ;
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   151
    Attr(#31) { // InnerClasses
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   152
      [] { // InnerClasses
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   153
        #29 #33 #30 25;
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   154
      }
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   155
    } // end InnerClasses
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   156
    ;
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   157
    Attr(#14) { // BootstrapMethods
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   158
      [] { // bootstrap_methods
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   159
        {  //  bootstrap_method
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   160
          #15; // bootstrap_method_ref
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   161
          [] { // bootstrap_arguments
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   162
            #16;
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   163
            #17;
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   164
            #16;
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   165
          }  //  bootstrap_arguments
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   166
        }  //  bootstrap_method
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   167
      }
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   168
    } // end BootstrapMethods
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   169
  } // Attributes
16b3ed4012f8 8159470: Error message for ICCE for MethodHandle constant pool not helpful
coleenp
parents:
diff changeset
   170
} // end class WithConfiguration