summaryrefslogtreecommitdiff
path: root/khb/khb_ast.ml
diff options
context:
space:
mode:
authorAlex AUVOLAT <alex.auvolat@ens.fr>2014-05-25 21:56:04 +0200
committerAlex AUVOLAT <alex.auvolat@ens.fr>2014-05-25 21:56:04 +0200
commit0140792c8111d2dd1cf9004f2e3e602ec34ed30a (patch)
treeedce9a1f3f65d1ad107e9e9dd2d28797e653a67d /khb/khb_ast.ml
parent8456506c0b9c8e78eec2cc464851cef36ca03398 (diff)
downloadSystemeReseaux-Projet-0140792c8111d2dd1cf9004f2e3e602ec34ed30a.tar.gz
SystemeReseaux-Projet-0140792c8111d2dd1cf9004f2e3e602ec34ed30a.zip
Cleanup.
Diffstat (limited to 'khb/khb_ast.ml')
-rw-r--r--khb/khb_ast.ml27
1 files changed, 0 insertions, 27 deletions
diff --git a/khb/khb_ast.ml b/khb/khb_ast.ml
deleted file mode 100644
index fa52ece..0000000
--- a/khb/khb_ast.ml
+++ /dev/null
@@ -1,27 +0,0 @@
-
-type khb_binop =
- | PLUS | MINUS
- | TIMES | DIV | MOD
- | EQUAL | NEQUAL
- | GT | LT | GE | LE
- | AND | OR | XOR
- | SEND | RECV | ASSIGN | SEQ
-
-type khb_unop =
- | MINUS | NOT
- | DEREF | REF
-
-
-type khb_expr =
- | BVar of string
- | BStr of string
- | BInt of int
- | BBool of bool
- | BUnary of unop * expr
- | BBinary of expr * unop * expr
- | BTernary of expr * expr * expr
- | BCall of string * expr list
- | BLoop of expr
- | BNewChan
- | BPar of expr
- | BIndex of expr * expr