Added support to printout data structure update nodes (bindings/updates)
[repair.git] / Repair / RepairCompiler / MCC / IR / MultUpdateNode.java
index 033c8d616ab71c3fc6ee7c4a0358205ed11d7202..94c109b721830bcc63e681ed722c0f6c7087a14d 100755 (executable)
@@ -16,6 +16,13 @@ class MultUpdateNode {
        this.op=op;
     }
 
+    public String toString() {
+       String st="";
+       for(int i=0;i<updates.size();i++)
+           st+=updates.get(i).toString()+"OR\n";
+       return st;
+    }
+
     public MultUpdateNode(ScopeNode sn) {
        updates=new Vector();
        scopenode=sn;