checking in changes
[IRC.git] / Robust / src / IR / Flat / FlatNew.java
1 package IR.Flat;
2 import IR.TypeDescriptor;
3
4 public class FlatNew extends FlatNode {
5     TempDescriptor dst;
6     TypeDescriptor type;
7     
8     public FlatNew(TypeDescriptor type, TempDescriptor dst) {
9         this.type=type;
10         this.dst=dst;
11     }
12
13     public String toString() {
14         return dst.toString()+"= NEW "+type.toString();
15     }
16 }