commit abaf8ec95392523fc7e1155fd2fdbdbff717cdb8
parent 167c3892c58e1edf965486aa0d5b494510c2b73a
Author: Ember Sawady <ecs@d2evs.net>
Date: Sun, 11 Dec 2022 02:36:47 +0000
Drop hare::lex::_null
Don't know why this was here in the first place
Signed-off-by: Ember Sawady <ecs@d2evs.net>
Diffstat:
1 file changed, 0 insertions(+), 3 deletions(-)
diff --git a/hare/lex/token.ha b/hare/lex/token.ha
@@ -279,9 +279,6 @@ const bmap: [_]str = [
"*=",
];
-// The value "null".
-export type _null = void;
-
// A token value, used for tokens such as '1337' (an integer).
export type value = (str | rune | u64 | f64 | void);