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