Changes
[satune.git] / src / AST / function.h
index f023f4aad8dda58bdcae205a83432bcd7e54d309..65a4b29fe3607bc75774808ac65ce4e990b06685 100644 (file)
@@ -2,9 +2,14 @@
 #define FUNCTION_H
 #include "classlist.h"
 #include "mymemory.h"
 #define FUNCTION_H
 #include "classlist.h"
 #include "mymemory.h"
+#include "ops.h"
+#include "structs.h"
 
 struct Function {
 
 struct Function {
-    
-    Table* table;
+       ArithOp op;
+       VectorSet* domains;
+       Set * range;
+       OverFlowBehavior overflowbehavior;
+       Table* table;
 };
 #endif
 };
 #endif