Fix tabbing.... Please fix your editors so they do tabbing correctly!!! (Spaces...
[IRC.git] / Robust / src / IR / Flat / FlatGenReachNode.java
1 package IR.Flat;
2 import IR.TypeDescriptor;
3
4 public class FlatGenReachNode extends FlatNode {
5   String graphName;
6
7   public FlatGenReachNode(String graphName) {
8     this.graphName = graphName;
9   }
10
11   public String getGraphName() {
12     return graphName;
13   }
14
15   public FlatNode clone(TempMap t) {
16     return new FlatGenReachNode(graphName);
17   }
18   public void rewriteUse(TempMap t) {
19   }
20   public void rewriteDst(TempMap t) {
21   }
22
23
24   public String toString() {
25     return "FlatGenReachNode_"+graphName;
26   }
27
28   public int kind() {
29     return FKind.FlatGenReachNode;
30   }
31
32   public TempDescriptor [] writesTemps() {
33     return new TempDescriptor[0];
34   }
35 }