(int x, I i)
| 128 | } |
| 129 | |
| 130 | void invoke(int x, I i) { |
| 131 | // invokevirtual |
| 132 | int a = foo(x); |
| 133 | // invokeinterface |
| 134 | Object r = i.goo(); |
| 135 | // invokespecial |
| 136 | AllInOne o = new AllInOne(); |
| 137 | super.toString(); |
| 138 | hidden(); |
| 139 | // invokestatic |
| 140 | bar(10, null); |
| 141 | } |
| 142 | |
| 143 | int returnInt(int x) { |
| 144 | if (x > 0) { |