Fix the bug of assignment conversion: 'short s = 12' should be allowed. And for such...
[IRC.git] / Robust / src / IR / Tree / MethodInvokeNode.java
index 6925b5e4beca811f6210dd43aef289c3bac1e56f..0ace6405728b4a9191c3f4100dc649d81d9b2085 100644 (file)
@@ -87,4 +87,9 @@ public class MethodInvokeNode extends ExpressionNode {
   public int kind() {
     return Kind.MethodInvokeNode;
   }
+  
+  public Long evaluate() {
+    eval = null;
+    return eval; //null;
+  }
 }