dig deeper than one level in retrieving chained constructor calls' throws lists ...
[idea/community.git] / plugins / groovy / testdata / groovy / stubGenerator / superInvocation1.test
1 class Base {
2   Base(String s, int i) throws Exception {}
3 }
4
5 class Derived extends Base {
6   Derived() {
7     super("", 0)
8   }
9 }
10 -----
11 public class Base implements groovy.lang.GroovyObject {
12   public Base(java.lang.String s, int i) {
13
14   }
15
16   public groovy.lang.MetaClass getMetaClass() {
17     return null;
18   }
19
20   public void setMetaClass(groovy.lang.MetaClass mc) {
21     return ;
22   }
23
24   public java.lang.Object invokeMethod(java.lang.String name, java.lang.Object args) {
25     return null;
26   }
27
28   public java.lang.Object getProperty(java.lang.String propertyName) {
29     return null;
30   }
31
32   public void setProperty(java.lang.String propertyName, java.lang.Object newValue) {
33     return ;
34   }
35 }
36 ---
37 public class Derived extends Base implements groovy.lang.GroovyObject {
38   public Derived() throws java.lang.Exception {
39     super((java.lang.String)null, (int)0);
40   }
41
42   public groovy.lang.MetaClass getMetaClass() {
43     return null;
44   }
45
46   public void setMetaClass(groovy.lang.MetaClass mc) {
47     return ;
48   }
49
50   public java.lang.Object invokeMethod(java.lang.String name, java.lang.Object args) {
51     return null;
52   }
53
54   public java.lang.Object getProperty(java.lang.String propertyName) {
55     return null;
56   }
57
58   public void setProperty(java.lang.String propertyName, java.lang.Object newValue) {
59     return ;
60   }
61 }
62 ---