projects
/
satune.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
65a4b29fe3607bc75774808ac65ce4e990b06685
[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