MCPcopy Create free account
hub / github.com/acsoto/BUAA-Compiler / Func

Class Func

src/CodeGeneration/Func.java:3–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package CodeGeneration;
2
3public 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected