585107c79d95dd2961aeae45f71ed6e7240a6e90
[repair.git] / Repair / RepairCompiler / MCC / IR / Binding.java
1 package MCC.IR;
2
3 class Binding {
4     VarDescriptor var;
5     int position;
6
7     public Binding(VarDescriptor vd,int pos) {
8         var=vd;
9         position=pos;
10     }
11
12     int getPosition() {
13         return position;
14     }
15
16     VarDescriptor getVar() {
17         return var;
18     }
19
20 }