• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright (c) 2016, the R8 project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4 
5 package invoke;
6 
7 public class SuperClass {
super0()8   public void super0() {
9     System.out.println("super0");
10   }
11 
super1(int a)12   public void super1(int a) {
13     System.out.println("super1 " + a);
14   }
15 
super2(int a, int b)16   public void super2(int a, int b) {
17     System.out.println("super2 " + a + " " + b);
18   }
19 
super3(int a, int b, int c)20   public void super3(int a, int b, int c) {
21     System.out.println("super3 " + a + " " + b + " " + c);
22   }
23 
super4(int a, int b, int c, int d)24   public void super4(int a, int b, int c, int d) {
25     System.out.println("super4 " + a + " " + b + " " + c + " " + d);
26   }
27 
super5(int a, int b, int c, int d, int e)28   public void super5(int a, int b, int c, int d, int e) {
29     System.out.println("super5 " + a + " " + b + " " + c + " " + d + " " + e);
30   }
31 
superRange(int a, int b, int c, int d, int e, int f)32   public void superRange(int a, int b, int c, int d, int e, int f) {
33     System.out.println("superRange " + a + " " + b + " " + c + " " + d + " " + e + " " + f);
34   }
35 }
36