Changes
[satune.git] / src / AST / function.h
1 #ifndef FUNCTION_H
2 #define FUNCTION_H
3 #include "classlist.h"
4 #include "mymemory.h"
5 #include "ops.h"
6 #include "structs.h"
7
8 struct Function {
9         ArithOp op;
10         VectorSet* domains;
11         Set * range;
12         OverFlowBehavior overflowbehavior;
13         Table* table;
14 };
15 #endif