commit 518844359911568d2eef0128761877ee7ae0b960
parent 9c7dd2e0f89bc31a1dd028b566dee3c231f4a992
Author: Sebastian <sebastian@sebsite.pw>
Date: Fri, 29 Apr 2022 23:20:06 -0400
hare::ast: remove void from value
This is already included in lex::value.
Signed-off-by: Sebastian <sebastian@sebsite.pw>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/hare/ast/expr.ha b/hare/ast/expr.ha
@@ -222,7 +222,7 @@ export type tuple_constant = []*expr;
export type _null = void;
// A scalar value.
-export type value = (void | bool | _null | ...lex::value);
+export type value = (bool | _null | ...lex::value);
// An integer or float constant.
export type number_constant = struct {