| 1 | package CodeGeneration; |
| 2 | |
| 3 | public class Func { |
| 4 | private int index; |
| 5 | private int args; |
| 6 | |
| 7 | public Func(int index, int args) { |
| 8 | this.index = index; |
| 9 | this.args = args; |
| 10 | } |
| 11 | |
| 12 | public int getIndex() { |
| 13 | return index; |
| 14 | } |
| 15 | |
| 16 | public int getArgs() { |
| 17 | return args; |
| 18 | } |
| 19 | } |
nothing calls this directly
no outgoing calls
no test coverage detected