summaryrefslogtreecommitdiff
path: root/Jennisys/Ast.fs
diff options
context:
space:
mode:
Diffstat (limited to 'Jennisys/Ast.fs')
-rw-r--r--Jennisys/Ast.fs3
1 files changed, 1 insertions, 2 deletions
diff --git a/Jennisys/Ast.fs b/Jennisys/Ast.fs
index eeb34a8d..7af1b6f6 100644
--- a/Jennisys/Ast.fs
+++ b/Jennisys/Ast.fs
@@ -39,7 +39,7 @@ type Expr =
| UpdateExpr of Expr * Expr * Expr
| SequenceExpr of Expr list
| SeqLength of Expr
- | SetExpr of Expr list
+ | SetExpr of Expr list //TODO: maybe this should really be a set instead of a list
| ForallExpr of VarDecl list * Expr
type Stmt =
@@ -77,6 +77,5 @@ type Const =
| NoneConst
| ThisConst of (* loc id *) string * Type option
| NewObj of (* loc id *) string * Type option
- | VarConst of (* loc id *) string * Type option
| ExprConst of Expr
| Unresolved of (* loc id *) string \ No newline at end of file