diff dmeval.h @ 740:48c48e94d87f

More work on the evaluator. Still broken, of course.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 22 Apr 2013 09:37:34 +0300
parents f3cab48c6746
children aba7dde79a04
line wrap: on
line diff
--- a/dmeval.h	Sun Apr 21 20:40:54 2013 +0300
+++ b/dmeval.h	Mon Apr 22 09:37:34 2013 +0300
@@ -19,13 +19,21 @@
     OP_DIV,
     OP_MOD,
 
+    OP_SUB_UNARY,
+    OP_COMPLEMENT,
+
     OP_LSHIFT,
     OP_RSHIFT,
 
     OP_AND,
     OP_OR,
     OP_XOR,
-    
+
+    OP_GT,
+    OP_LT,
+    OP_GT_EQ,
+    OP_LT_EQ,
+
     // Special ops
     OP_FUNC,
     OP_VAR,