Alex Light | 1277108 | 2016-01-26 16:07:41 -0800 | [diff] [blame] | 1 | # /* |
| 2 | # * Copyright (C) 2016 The Android Open Source Project |
| 3 | # * |
| 4 | # * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # * you may not use this file except in compliance with the License. |
| 6 | # * You may obtain a copy of the License at |
| 7 | # * |
| 8 | # * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # * |
| 10 | # * Unless required by applicable law or agreed to in writing, software |
| 11 | # * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # * See the License for the specific language governing permissions and |
| 14 | # * limitations under the License. |
| 15 | # */ |
| 16 | # public class Klass implements Iface1, Iface2 { |
| 17 | # public static void testMe(Iface2 me) { |
| 18 | # try { |
| 19 | # me.notImplementedMethod0(); |
| 20 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod0!"); |
| 21 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 22 | # try { |
| 23 | # me.notImplementedMethod1(); |
| 24 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod1!"); |
| 25 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 26 | # try { |
| 27 | # me.notImplementedMethod2(); |
| 28 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod2!"); |
| 29 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 30 | # try { |
| 31 | # me.notImplementedMethod3(); |
| 32 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod3!"); |
| 33 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 34 | # try { |
| 35 | # me.notImplementedMethod4(); |
| 36 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod4!"); |
| 37 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 38 | # try { |
| 39 | # me.notImplementedMethod5(); |
| 40 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod5!"); |
| 41 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 42 | # try { |
| 43 | # me.notImplementedMethod6(); |
| 44 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod6!"); |
| 45 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 46 | # try { |
| 47 | # me.notImplementedMethod7(); |
| 48 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod7!"); |
| 49 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 50 | # try { |
| 51 | # me.notImplementedMethod8(); |
| 52 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod8!"); |
| 53 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 54 | # try { |
| 55 | # me.notImplementedMethod9(); |
| 56 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod9!"); |
| 57 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 58 | # try { |
| 59 | # me.notImplementedMethod10(); |
| 60 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod10!"); |
| 61 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 62 | # try { |
| 63 | # me.notImplementedMethod11(); |
| 64 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod11!"); |
| 65 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 66 | # try { |
| 67 | # me.notImplementedMethod12(); |
| 68 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod12!"); |
| 69 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 70 | # try { |
| 71 | # me.notImplementedMethod13(); |
| 72 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod13!"); |
| 73 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 74 | # try { |
| 75 | # me.notImplementedMethod14(); |
| 76 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod14!"); |
| 77 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 78 | # try { |
| 79 | # me.notImplementedMethod15(); |
| 80 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod15!"); |
| 81 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 82 | # try { |
| 83 | # me.notImplementedMethod16(); |
| 84 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod16!"); |
| 85 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 86 | # try { |
| 87 | # me.notImplementedMethod17(); |
| 88 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod17!"); |
| 89 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 90 | # try { |
| 91 | # me.notImplementedMethod18(); |
| 92 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod18!"); |
| 93 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 94 | # try { |
| 95 | # me.notImplementedMethod19(); |
| 96 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod19!"); |
| 97 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 98 | # try { |
| 99 | # me.notImplementedMethod20(); |
| 100 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod20!"); |
| 101 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 102 | # try { |
| 103 | # me.notImplementedMethod21(); |
| 104 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod21!"); |
| 105 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 106 | # try { |
| 107 | # me.notImplementedMethod22(); |
| 108 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod22!"); |
| 109 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 110 | # try { |
| 111 | # me.notImplementedMethod23(); |
| 112 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod23!"); |
| 113 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 114 | # try { |
| 115 | # me.notImplementedMethod24(); |
| 116 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod24!"); |
| 117 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 118 | # try { |
| 119 | # me.notImplementedMethod25(); |
| 120 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod25!"); |
| 121 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 122 | # try { |
| 123 | # me.notImplementedMethod26(); |
| 124 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod26!"); |
| 125 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 126 | # try { |
| 127 | # me.notImplementedMethod27(); |
| 128 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod27!"); |
| 129 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 130 | # try { |
| 131 | # me.notImplementedMethod28(); |
| 132 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod28!"); |
| 133 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 134 | # try { |
| 135 | # me.notImplementedMethod29(); |
| 136 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod29!"); |
| 137 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 138 | # try { |
| 139 | # me.notImplementedMethod30(); |
| 140 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod30!"); |
| 141 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 142 | # try { |
| 143 | # me.notImplementedMethod31(); |
| 144 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod31!"); |
| 145 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 146 | # try { |
| 147 | # me.notImplementedMethod32(); |
| 148 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod32!"); |
| 149 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 150 | # try { |
| 151 | # me.notImplementedMethod33(); |
| 152 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod33!"); |
| 153 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 154 | # try { |
| 155 | # me.notImplementedMethod34(); |
| 156 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod34!"); |
| 157 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 158 | # try { |
| 159 | # me.notImplementedMethod35(); |
| 160 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod35!"); |
| 161 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 162 | # try { |
| 163 | # me.notImplementedMethod36(); |
| 164 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod36!"); |
| 165 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 166 | # try { |
| 167 | # me.notImplementedMethod37(); |
| 168 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod37!"); |
| 169 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 170 | # try { |
| 171 | # me.notImplementedMethod38(); |
| 172 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod38!"); |
| 173 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 174 | # try { |
| 175 | # me.notImplementedMethod39(); |
| 176 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod39!"); |
| 177 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 178 | # try { |
| 179 | # me.notImplementedMethod40(); |
| 180 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod40!"); |
| 181 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 182 | # try { |
| 183 | # me.notImplementedMethod41(); |
| 184 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod41!"); |
| 185 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 186 | # try { |
| 187 | # me.notImplementedMethod42(); |
| 188 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod42!"); |
| 189 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 190 | # try { |
| 191 | # me.notImplementedMethod43(); |
| 192 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod43!"); |
| 193 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 194 | # try { |
| 195 | # me.notImplementedMethod44(); |
| 196 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod44!"); |
| 197 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 198 | # try { |
| 199 | # me.notImplementedMethod45(); |
| 200 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod45!"); |
| 201 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 202 | # try { |
| 203 | # me.notImplementedMethod46(); |
| 204 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod46!"); |
| 205 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 206 | # try { |
| 207 | # me.notImplementedMethod47(); |
| 208 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod47!"); |
| 209 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 210 | # try { |
| 211 | # me.notImplementedMethod48(); |
| 212 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod48!"); |
| 213 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 214 | # try { |
| 215 | # me.notImplementedMethod49(); |
| 216 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod49!"); |
| 217 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 218 | # try { |
| 219 | # me.notImplementedMethod50(); |
| 220 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod50!"); |
| 221 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 222 | # try { |
| 223 | # me.notImplementedMethod51(); |
| 224 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod51!"); |
| 225 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 226 | # try { |
| 227 | # me.notImplementedMethod52(); |
| 228 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod52!"); |
| 229 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 230 | # try { |
| 231 | # me.notImplementedMethod53(); |
| 232 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod53!"); |
| 233 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 234 | # try { |
| 235 | # me.notImplementedMethod54(); |
| 236 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod54!"); |
| 237 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 238 | # try { |
| 239 | # me.notImplementedMethod55(); |
| 240 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod55!"); |
| 241 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 242 | # try { |
| 243 | # me.notImplementedMethod56(); |
| 244 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod56!"); |
| 245 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 246 | # try { |
| 247 | # me.notImplementedMethod57(); |
| 248 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod57!"); |
| 249 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 250 | # try { |
| 251 | # me.notImplementedMethod58(); |
| 252 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod58!"); |
| 253 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 254 | # try { |
| 255 | # me.notImplementedMethod59(); |
| 256 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod59!"); |
| 257 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 258 | # try { |
| 259 | # me.notImplementedMethod60(); |
| 260 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod60!"); |
| 261 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 262 | # try { |
| 263 | # me.notImplementedMethod61(); |
| 264 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod61!"); |
| 265 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 266 | # try { |
| 267 | # me.notImplementedMethod62(); |
| 268 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod62!"); |
| 269 | # } catch (AbstractMethodError e) { /* do nothing */ } |
| 270 | # try { |
| 271 | # me.notImplementedMethod63(); |
| 272 | # System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod63!"); |
| 273 | # } catch (AbstractMethodError e) { /* do nothing */ } } |
| 274 | # } |
| 275 | # } |
| 276 | |
| 277 | .class public LKlass; |
| 278 | .super Ljava/lang/Object; |
| 279 | .implements LIface1; |
| 280 | .implements LIface2; |
| 281 | |
| 282 | .method public constructor <init>()V |
| 283 | .registers 1 |
| 284 | invoke-direct {p0}, Ljava/lang/Object;-><init>()V |
| 285 | return-void |
| 286 | .end method |
| 287 | |
| 288 | .method public static testMe(LIface2;)V |
| 289 | .locals 5 |
| 290 | :try_0_start |
| 291 | invoke-interface {p0}, LIface2;->notImplementedMethod0()V |
| 292 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 293 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod0!" |
| 294 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 295 | goto :catch_0_end |
| 296 | :try_0_end |
| 297 | .catch Ljava/lang/AbstractMethodError; {:try_0_start .. :try_0_end} :catch_0_end |
| 298 | :catch_0_end |
| 299 | |
| 300 | |
| 301 | :try_1_start |
| 302 | invoke-interface {p0}, LIface2;->notImplementedMethod1()V |
| 303 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 304 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod1!" |
| 305 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 306 | goto :catch_1_end |
| 307 | :try_1_end |
| 308 | .catch Ljava/lang/AbstractMethodError; {:try_1_start .. :try_1_end} :catch_1_end |
| 309 | :catch_1_end |
| 310 | |
| 311 | |
| 312 | :try_2_start |
| 313 | invoke-interface {p0}, LIface2;->notImplementedMethod2()V |
| 314 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 315 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod2!" |
| 316 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 317 | goto :catch_2_end |
| 318 | :try_2_end |
| 319 | .catch Ljava/lang/AbstractMethodError; {:try_2_start .. :try_2_end} :catch_2_end |
| 320 | :catch_2_end |
| 321 | |
| 322 | |
| 323 | :try_3_start |
| 324 | invoke-interface {p0}, LIface2;->notImplementedMethod3()V |
| 325 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 326 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod3!" |
| 327 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 328 | goto :catch_3_end |
| 329 | :try_3_end |
| 330 | .catch Ljava/lang/AbstractMethodError; {:try_3_start .. :try_3_end} :catch_3_end |
| 331 | :catch_3_end |
| 332 | |
| 333 | |
| 334 | :try_4_start |
| 335 | invoke-interface {p0}, LIface2;->notImplementedMethod4()V |
| 336 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 337 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod4!" |
| 338 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 339 | goto :catch_4_end |
| 340 | :try_4_end |
| 341 | .catch Ljava/lang/AbstractMethodError; {:try_4_start .. :try_4_end} :catch_4_end |
| 342 | :catch_4_end |
| 343 | |
| 344 | |
| 345 | :try_5_start |
| 346 | invoke-interface {p0}, LIface2;->notImplementedMethod5()V |
| 347 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 348 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod5!" |
| 349 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 350 | goto :catch_5_end |
| 351 | :try_5_end |
| 352 | .catch Ljava/lang/AbstractMethodError; {:try_5_start .. :try_5_end} :catch_5_end |
| 353 | :catch_5_end |
| 354 | |
| 355 | |
| 356 | :try_6_start |
| 357 | invoke-interface {p0}, LIface2;->notImplementedMethod6()V |
| 358 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 359 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod6!" |
| 360 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 361 | goto :catch_6_end |
| 362 | :try_6_end |
| 363 | .catch Ljava/lang/AbstractMethodError; {:try_6_start .. :try_6_end} :catch_6_end |
| 364 | :catch_6_end |
| 365 | |
| 366 | |
| 367 | :try_7_start |
| 368 | invoke-interface {p0}, LIface2;->notImplementedMethod7()V |
| 369 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 370 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod7!" |
| 371 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 372 | goto :catch_7_end |
| 373 | :try_7_end |
| 374 | .catch Ljava/lang/AbstractMethodError; {:try_7_start .. :try_7_end} :catch_7_end |
| 375 | :catch_7_end |
| 376 | |
| 377 | |
| 378 | :try_8_start |
| 379 | invoke-interface {p0}, LIface2;->notImplementedMethod8()V |
| 380 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 381 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod8!" |
| 382 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 383 | goto :catch_8_end |
| 384 | :try_8_end |
| 385 | .catch Ljava/lang/AbstractMethodError; {:try_8_start .. :try_8_end} :catch_8_end |
| 386 | :catch_8_end |
| 387 | |
| 388 | |
| 389 | :try_9_start |
| 390 | invoke-interface {p0}, LIface2;->notImplementedMethod9()V |
| 391 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 392 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod9!" |
| 393 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 394 | goto :catch_9_end |
| 395 | :try_9_end |
| 396 | .catch Ljava/lang/AbstractMethodError; {:try_9_start .. :try_9_end} :catch_9_end |
| 397 | :catch_9_end |
| 398 | |
| 399 | |
| 400 | :try_10_start |
| 401 | invoke-interface {p0}, LIface2;->notImplementedMethod10()V |
| 402 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 403 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod10!" |
| 404 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 405 | goto :catch_10_end |
| 406 | :try_10_end |
| 407 | .catch Ljava/lang/AbstractMethodError; {:try_10_start .. :try_10_end} :catch_10_end |
| 408 | :catch_10_end |
| 409 | |
| 410 | |
| 411 | :try_11_start |
| 412 | invoke-interface {p0}, LIface2;->notImplementedMethod11()V |
| 413 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 414 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod11!" |
| 415 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 416 | goto :catch_11_end |
| 417 | :try_11_end |
| 418 | .catch Ljava/lang/AbstractMethodError; {:try_11_start .. :try_11_end} :catch_11_end |
| 419 | :catch_11_end |
| 420 | |
| 421 | |
| 422 | :try_12_start |
| 423 | invoke-interface {p0}, LIface2;->notImplementedMethod12()V |
| 424 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 425 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod12!" |
| 426 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 427 | goto :catch_12_end |
| 428 | :try_12_end |
| 429 | .catch Ljava/lang/AbstractMethodError; {:try_12_start .. :try_12_end} :catch_12_end |
| 430 | :catch_12_end |
| 431 | |
| 432 | |
| 433 | :try_13_start |
| 434 | invoke-interface {p0}, LIface2;->notImplementedMethod13()V |
| 435 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 436 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod13!" |
| 437 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 438 | goto :catch_13_end |
| 439 | :try_13_end |
| 440 | .catch Ljava/lang/AbstractMethodError; {:try_13_start .. :try_13_end} :catch_13_end |
| 441 | :catch_13_end |
| 442 | |
| 443 | |
| 444 | :try_14_start |
| 445 | invoke-interface {p0}, LIface2;->notImplementedMethod14()V |
| 446 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 447 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod14!" |
| 448 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 449 | goto :catch_14_end |
| 450 | :try_14_end |
| 451 | .catch Ljava/lang/AbstractMethodError; {:try_14_start .. :try_14_end} :catch_14_end |
| 452 | :catch_14_end |
| 453 | |
| 454 | |
| 455 | :try_15_start |
| 456 | invoke-interface {p0}, LIface2;->notImplementedMethod15()V |
| 457 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 458 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod15!" |
| 459 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 460 | goto :catch_15_end |
| 461 | :try_15_end |
| 462 | .catch Ljava/lang/AbstractMethodError; {:try_15_start .. :try_15_end} :catch_15_end |
| 463 | :catch_15_end |
| 464 | |
| 465 | |
| 466 | :try_16_start |
| 467 | invoke-interface {p0}, LIface2;->notImplementedMethod16()V |
| 468 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 469 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod16!" |
| 470 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 471 | goto :catch_16_end |
| 472 | :try_16_end |
| 473 | .catch Ljava/lang/AbstractMethodError; {:try_16_start .. :try_16_end} :catch_16_end |
| 474 | :catch_16_end |
| 475 | |
| 476 | |
| 477 | :try_17_start |
| 478 | invoke-interface {p0}, LIface2;->notImplementedMethod17()V |
| 479 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 480 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod17!" |
| 481 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 482 | goto :catch_17_end |
| 483 | :try_17_end |
| 484 | .catch Ljava/lang/AbstractMethodError; {:try_17_start .. :try_17_end} :catch_17_end |
| 485 | :catch_17_end |
| 486 | |
| 487 | |
| 488 | :try_18_start |
| 489 | invoke-interface {p0}, LIface2;->notImplementedMethod18()V |
| 490 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 491 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod18!" |
| 492 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 493 | goto :catch_18_end |
| 494 | :try_18_end |
| 495 | .catch Ljava/lang/AbstractMethodError; {:try_18_start .. :try_18_end} :catch_18_end |
| 496 | :catch_18_end |
| 497 | |
| 498 | |
| 499 | :try_19_start |
| 500 | invoke-interface {p0}, LIface2;->notImplementedMethod19()V |
| 501 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 502 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod19!" |
| 503 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 504 | goto :catch_19_end |
| 505 | :try_19_end |
| 506 | .catch Ljava/lang/AbstractMethodError; {:try_19_start .. :try_19_end} :catch_19_end |
| 507 | :catch_19_end |
| 508 | |
| 509 | |
| 510 | :try_20_start |
| 511 | invoke-interface {p0}, LIface2;->notImplementedMethod20()V |
| 512 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 513 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod20!" |
| 514 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 515 | goto :catch_20_end |
| 516 | :try_20_end |
| 517 | .catch Ljava/lang/AbstractMethodError; {:try_20_start .. :try_20_end} :catch_20_end |
| 518 | :catch_20_end |
| 519 | |
| 520 | |
| 521 | :try_21_start |
| 522 | invoke-interface {p0}, LIface2;->notImplementedMethod21()V |
| 523 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 524 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod21!" |
| 525 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 526 | goto :catch_21_end |
| 527 | :try_21_end |
| 528 | .catch Ljava/lang/AbstractMethodError; {:try_21_start .. :try_21_end} :catch_21_end |
| 529 | :catch_21_end |
| 530 | |
| 531 | |
| 532 | :try_22_start |
| 533 | invoke-interface {p0}, LIface2;->notImplementedMethod22()V |
| 534 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 535 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod22!" |
| 536 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 537 | goto :catch_22_end |
| 538 | :try_22_end |
| 539 | .catch Ljava/lang/AbstractMethodError; {:try_22_start .. :try_22_end} :catch_22_end |
| 540 | :catch_22_end |
| 541 | |
| 542 | |
| 543 | :try_23_start |
| 544 | invoke-interface {p0}, LIface2;->notImplementedMethod23()V |
| 545 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 546 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod23!" |
| 547 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 548 | goto :catch_23_end |
| 549 | :try_23_end |
| 550 | .catch Ljava/lang/AbstractMethodError; {:try_23_start .. :try_23_end} :catch_23_end |
| 551 | :catch_23_end |
| 552 | |
| 553 | |
| 554 | :try_24_start |
| 555 | invoke-interface {p0}, LIface2;->notImplementedMethod24()V |
| 556 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 557 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod24!" |
| 558 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 559 | goto :catch_24_end |
| 560 | :try_24_end |
| 561 | .catch Ljava/lang/AbstractMethodError; {:try_24_start .. :try_24_end} :catch_24_end |
| 562 | :catch_24_end |
| 563 | |
| 564 | |
| 565 | :try_25_start |
| 566 | invoke-interface {p0}, LIface2;->notImplementedMethod25()V |
| 567 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 568 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod25!" |
| 569 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 570 | goto :catch_25_end |
| 571 | :try_25_end |
| 572 | .catch Ljava/lang/AbstractMethodError; {:try_25_start .. :try_25_end} :catch_25_end |
| 573 | :catch_25_end |
| 574 | |
| 575 | |
| 576 | :try_26_start |
| 577 | invoke-interface {p0}, LIface2;->notImplementedMethod26()V |
| 578 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 579 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod26!" |
| 580 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 581 | goto :catch_26_end |
| 582 | :try_26_end |
| 583 | .catch Ljava/lang/AbstractMethodError; {:try_26_start .. :try_26_end} :catch_26_end |
| 584 | :catch_26_end |
| 585 | |
| 586 | |
| 587 | :try_27_start |
| 588 | invoke-interface {p0}, LIface2;->notImplementedMethod27()V |
| 589 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 590 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod27!" |
| 591 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 592 | goto :catch_27_end |
| 593 | :try_27_end |
| 594 | .catch Ljava/lang/AbstractMethodError; {:try_27_start .. :try_27_end} :catch_27_end |
| 595 | :catch_27_end |
| 596 | |
| 597 | |
| 598 | :try_28_start |
| 599 | invoke-interface {p0}, LIface2;->notImplementedMethod28()V |
| 600 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 601 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod28!" |
| 602 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 603 | goto :catch_28_end |
| 604 | :try_28_end |
| 605 | .catch Ljava/lang/AbstractMethodError; {:try_28_start .. :try_28_end} :catch_28_end |
| 606 | :catch_28_end |
| 607 | |
| 608 | |
| 609 | :try_29_start |
| 610 | invoke-interface {p0}, LIface2;->notImplementedMethod29()V |
| 611 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 612 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod29!" |
| 613 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 614 | goto :catch_29_end |
| 615 | :try_29_end |
| 616 | .catch Ljava/lang/AbstractMethodError; {:try_29_start .. :try_29_end} :catch_29_end |
| 617 | :catch_29_end |
| 618 | |
| 619 | |
| 620 | :try_30_start |
| 621 | invoke-interface {p0}, LIface2;->notImplementedMethod30()V |
| 622 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 623 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod30!" |
| 624 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 625 | goto :catch_30_end |
| 626 | :try_30_end |
| 627 | .catch Ljava/lang/AbstractMethodError; {:try_30_start .. :try_30_end} :catch_30_end |
| 628 | :catch_30_end |
| 629 | |
| 630 | |
| 631 | :try_31_start |
| 632 | invoke-interface {p0}, LIface2;->notImplementedMethod31()V |
| 633 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 634 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod31!" |
| 635 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 636 | goto :catch_31_end |
| 637 | :try_31_end |
| 638 | .catch Ljava/lang/AbstractMethodError; {:try_31_start .. :try_31_end} :catch_31_end |
| 639 | :catch_31_end |
| 640 | |
| 641 | |
| 642 | :try_32_start |
| 643 | invoke-interface {p0}, LIface2;->notImplementedMethod32()V |
| 644 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 645 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod32!" |
| 646 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 647 | goto :catch_32_end |
| 648 | :try_32_end |
| 649 | .catch Ljava/lang/AbstractMethodError; {:try_32_start .. :try_32_end} :catch_32_end |
| 650 | :catch_32_end |
| 651 | |
| 652 | |
| 653 | :try_33_start |
| 654 | invoke-interface {p0}, LIface2;->notImplementedMethod33()V |
| 655 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 656 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod33!" |
| 657 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 658 | goto :catch_33_end |
| 659 | :try_33_end |
| 660 | .catch Ljava/lang/AbstractMethodError; {:try_33_start .. :try_33_end} :catch_33_end |
| 661 | :catch_33_end |
| 662 | |
| 663 | |
| 664 | :try_34_start |
| 665 | invoke-interface {p0}, LIface2;->notImplementedMethod34()V |
| 666 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 667 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod34!" |
| 668 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 669 | goto :catch_34_end |
| 670 | :try_34_end |
| 671 | .catch Ljava/lang/AbstractMethodError; {:try_34_start .. :try_34_end} :catch_34_end |
| 672 | :catch_34_end |
| 673 | |
| 674 | |
| 675 | :try_35_start |
| 676 | invoke-interface {p0}, LIface2;->notImplementedMethod35()V |
| 677 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 678 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod35!" |
| 679 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 680 | goto :catch_35_end |
| 681 | :try_35_end |
| 682 | .catch Ljava/lang/AbstractMethodError; {:try_35_start .. :try_35_end} :catch_35_end |
| 683 | :catch_35_end |
| 684 | |
| 685 | |
| 686 | :try_36_start |
| 687 | invoke-interface {p0}, LIface2;->notImplementedMethod36()V |
| 688 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 689 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod36!" |
| 690 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 691 | goto :catch_36_end |
| 692 | :try_36_end |
| 693 | .catch Ljava/lang/AbstractMethodError; {:try_36_start .. :try_36_end} :catch_36_end |
| 694 | :catch_36_end |
| 695 | |
| 696 | |
| 697 | :try_37_start |
| 698 | invoke-interface {p0}, LIface2;->notImplementedMethod37()V |
| 699 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 700 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod37!" |
| 701 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 702 | goto :catch_37_end |
| 703 | :try_37_end |
| 704 | .catch Ljava/lang/AbstractMethodError; {:try_37_start .. :try_37_end} :catch_37_end |
| 705 | :catch_37_end |
| 706 | |
| 707 | |
| 708 | :try_38_start |
| 709 | invoke-interface {p0}, LIface2;->notImplementedMethod38()V |
| 710 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 711 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod38!" |
| 712 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 713 | goto :catch_38_end |
| 714 | :try_38_end |
| 715 | .catch Ljava/lang/AbstractMethodError; {:try_38_start .. :try_38_end} :catch_38_end |
| 716 | :catch_38_end |
| 717 | |
| 718 | |
| 719 | :try_39_start |
| 720 | invoke-interface {p0}, LIface2;->notImplementedMethod39()V |
| 721 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 722 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod39!" |
| 723 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 724 | goto :catch_39_end |
| 725 | :try_39_end |
| 726 | .catch Ljava/lang/AbstractMethodError; {:try_39_start .. :try_39_end} :catch_39_end |
| 727 | :catch_39_end |
| 728 | |
| 729 | |
| 730 | :try_40_start |
| 731 | invoke-interface {p0}, LIface2;->notImplementedMethod40()V |
| 732 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 733 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod40!" |
| 734 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 735 | goto :catch_40_end |
| 736 | :try_40_end |
| 737 | .catch Ljava/lang/AbstractMethodError; {:try_40_start .. :try_40_end} :catch_40_end |
| 738 | :catch_40_end |
| 739 | |
| 740 | |
| 741 | :try_41_start |
| 742 | invoke-interface {p0}, LIface2;->notImplementedMethod41()V |
| 743 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 744 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod41!" |
| 745 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 746 | goto :catch_41_end |
| 747 | :try_41_end |
| 748 | .catch Ljava/lang/AbstractMethodError; {:try_41_start .. :try_41_end} :catch_41_end |
| 749 | :catch_41_end |
| 750 | |
| 751 | |
| 752 | :try_42_start |
| 753 | invoke-interface {p0}, LIface2;->notImplementedMethod42()V |
| 754 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 755 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod42!" |
| 756 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 757 | goto :catch_42_end |
| 758 | :try_42_end |
| 759 | .catch Ljava/lang/AbstractMethodError; {:try_42_start .. :try_42_end} :catch_42_end |
| 760 | :catch_42_end |
| 761 | |
| 762 | |
| 763 | :try_43_start |
| 764 | invoke-interface {p0}, LIface2;->notImplementedMethod43()V |
| 765 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 766 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod43!" |
| 767 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 768 | goto :catch_43_end |
| 769 | :try_43_end |
| 770 | .catch Ljava/lang/AbstractMethodError; {:try_43_start .. :try_43_end} :catch_43_end |
| 771 | :catch_43_end |
| 772 | |
| 773 | |
| 774 | :try_44_start |
| 775 | invoke-interface {p0}, LIface2;->notImplementedMethod44()V |
| 776 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 777 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod44!" |
| 778 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 779 | goto :catch_44_end |
| 780 | :try_44_end |
| 781 | .catch Ljava/lang/AbstractMethodError; {:try_44_start .. :try_44_end} :catch_44_end |
| 782 | :catch_44_end |
| 783 | |
| 784 | |
| 785 | :try_45_start |
| 786 | invoke-interface {p0}, LIface2;->notImplementedMethod45()V |
| 787 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 788 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod45!" |
| 789 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 790 | goto :catch_45_end |
| 791 | :try_45_end |
| 792 | .catch Ljava/lang/AbstractMethodError; {:try_45_start .. :try_45_end} :catch_45_end |
| 793 | :catch_45_end |
| 794 | |
| 795 | |
| 796 | :try_46_start |
| 797 | invoke-interface {p0}, LIface2;->notImplementedMethod46()V |
| 798 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 799 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod46!" |
| 800 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 801 | goto :catch_46_end |
| 802 | :try_46_end |
| 803 | .catch Ljava/lang/AbstractMethodError; {:try_46_start .. :try_46_end} :catch_46_end |
| 804 | :catch_46_end |
| 805 | |
| 806 | |
| 807 | :try_47_start |
| 808 | invoke-interface {p0}, LIface2;->notImplementedMethod47()V |
| 809 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 810 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod47!" |
| 811 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 812 | goto :catch_47_end |
| 813 | :try_47_end |
| 814 | .catch Ljava/lang/AbstractMethodError; {:try_47_start .. :try_47_end} :catch_47_end |
| 815 | :catch_47_end |
| 816 | |
| 817 | |
| 818 | :try_48_start |
| 819 | invoke-interface {p0}, LIface2;->notImplementedMethod48()V |
| 820 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 821 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod48!" |
| 822 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 823 | goto :catch_48_end |
| 824 | :try_48_end |
| 825 | .catch Ljava/lang/AbstractMethodError; {:try_48_start .. :try_48_end} :catch_48_end |
| 826 | :catch_48_end |
| 827 | |
| 828 | |
| 829 | :try_49_start |
| 830 | invoke-interface {p0}, LIface2;->notImplementedMethod49()V |
| 831 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 832 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod49!" |
| 833 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 834 | goto :catch_49_end |
| 835 | :try_49_end |
| 836 | .catch Ljava/lang/AbstractMethodError; {:try_49_start .. :try_49_end} :catch_49_end |
| 837 | :catch_49_end |
| 838 | |
| 839 | |
| 840 | :try_50_start |
| 841 | invoke-interface {p0}, LIface2;->notImplementedMethod50()V |
| 842 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 843 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod50!" |
| 844 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 845 | goto :catch_50_end |
| 846 | :try_50_end |
| 847 | .catch Ljava/lang/AbstractMethodError; {:try_50_start .. :try_50_end} :catch_50_end |
| 848 | :catch_50_end |
| 849 | |
| 850 | |
| 851 | :try_51_start |
| 852 | invoke-interface {p0}, LIface2;->notImplementedMethod51()V |
| 853 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 854 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod51!" |
| 855 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 856 | goto :catch_51_end |
| 857 | :try_51_end |
| 858 | .catch Ljava/lang/AbstractMethodError; {:try_51_start .. :try_51_end} :catch_51_end |
| 859 | :catch_51_end |
| 860 | |
| 861 | |
| 862 | :try_52_start |
| 863 | invoke-interface {p0}, LIface2;->notImplementedMethod52()V |
| 864 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 865 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod52!" |
| 866 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 867 | goto :catch_52_end |
| 868 | :try_52_end |
| 869 | .catch Ljava/lang/AbstractMethodError; {:try_52_start .. :try_52_end} :catch_52_end |
| 870 | :catch_52_end |
| 871 | |
| 872 | |
| 873 | :try_53_start |
| 874 | invoke-interface {p0}, LIface2;->notImplementedMethod53()V |
| 875 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 876 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod53!" |
| 877 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 878 | goto :catch_53_end |
| 879 | :try_53_end |
| 880 | .catch Ljava/lang/AbstractMethodError; {:try_53_start .. :try_53_end} :catch_53_end |
| 881 | :catch_53_end |
| 882 | |
| 883 | |
| 884 | :try_54_start |
| 885 | invoke-interface {p0}, LIface2;->notImplementedMethod54()V |
| 886 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 887 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod54!" |
| 888 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 889 | goto :catch_54_end |
| 890 | :try_54_end |
| 891 | .catch Ljava/lang/AbstractMethodError; {:try_54_start .. :try_54_end} :catch_54_end |
| 892 | :catch_54_end |
| 893 | |
| 894 | |
| 895 | :try_55_start |
| 896 | invoke-interface {p0}, LIface2;->notImplementedMethod55()V |
| 897 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 898 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod55!" |
| 899 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 900 | goto :catch_55_end |
| 901 | :try_55_end |
| 902 | .catch Ljava/lang/AbstractMethodError; {:try_55_start .. :try_55_end} :catch_55_end |
| 903 | :catch_55_end |
| 904 | |
| 905 | |
| 906 | :try_56_start |
| 907 | invoke-interface {p0}, LIface2;->notImplementedMethod56()V |
| 908 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 909 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod56!" |
| 910 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 911 | goto :catch_56_end |
| 912 | :try_56_end |
| 913 | .catch Ljava/lang/AbstractMethodError; {:try_56_start .. :try_56_end} :catch_56_end |
| 914 | :catch_56_end |
| 915 | |
| 916 | |
| 917 | :try_57_start |
| 918 | invoke-interface {p0}, LIface2;->notImplementedMethod57()V |
| 919 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 920 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod57!" |
| 921 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 922 | goto :catch_57_end |
| 923 | :try_57_end |
| 924 | .catch Ljava/lang/AbstractMethodError; {:try_57_start .. :try_57_end} :catch_57_end |
| 925 | :catch_57_end |
| 926 | |
| 927 | |
| 928 | :try_58_start |
| 929 | invoke-interface {p0}, LIface2;->notImplementedMethod58()V |
| 930 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 931 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod58!" |
| 932 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 933 | goto :catch_58_end |
| 934 | :try_58_end |
| 935 | .catch Ljava/lang/AbstractMethodError; {:try_58_start .. :try_58_end} :catch_58_end |
| 936 | :catch_58_end |
| 937 | |
| 938 | |
| 939 | :try_59_start |
| 940 | invoke-interface {p0}, LIface2;->notImplementedMethod59()V |
| 941 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 942 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod59!" |
| 943 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 944 | goto :catch_59_end |
| 945 | :try_59_end |
| 946 | .catch Ljava/lang/AbstractMethodError; {:try_59_start .. :try_59_end} :catch_59_end |
| 947 | :catch_59_end |
| 948 | |
| 949 | |
| 950 | :try_60_start |
| 951 | invoke-interface {p0}, LIface2;->notImplementedMethod60()V |
| 952 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 953 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod60!" |
| 954 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 955 | goto :catch_60_end |
| 956 | :try_60_end |
| 957 | .catch Ljava/lang/AbstractMethodError; {:try_60_start .. :try_60_end} :catch_60_end |
| 958 | :catch_60_end |
| 959 | |
| 960 | |
| 961 | :try_61_start |
| 962 | invoke-interface {p0}, LIface2;->notImplementedMethod61()V |
| 963 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 964 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod61!" |
| 965 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 966 | goto :catch_61_end |
| 967 | :try_61_end |
| 968 | .catch Ljava/lang/AbstractMethodError; {:try_61_start .. :try_61_end} :catch_61_end |
| 969 | :catch_61_end |
| 970 | |
| 971 | |
| 972 | :try_62_start |
| 973 | invoke-interface {p0}, LIface2;->notImplementedMethod62()V |
| 974 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 975 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod62!" |
| 976 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 977 | goto :catch_62_end |
| 978 | :try_62_end |
| 979 | .catch Ljava/lang/AbstractMethodError; {:try_62_start .. :try_62_end} :catch_62_end |
| 980 | :catch_62_end |
| 981 | |
| 982 | |
| 983 | :try_63_start |
| 984 | invoke-interface {p0}, LIface2;->notImplementedMethod63()V |
| 985 | sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream; |
| 986 | const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod63!" |
| 987 | invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V |
| 988 | goto :catch_63_end |
| 989 | :try_63_end |
| 990 | .catch Ljava/lang/AbstractMethodError; {:try_63_start .. :try_63_end} :catch_63_end |
| 991 | :catch_63_end |
| 992 | return-void |
| 993 | .end method |