Fix: Use NOP instead of void in unless macro

The `unless` macro's expansion was updated to use `...` (NOP) instead of
`void`. This change also involved removing the `void` keyword from the
parser, as it is no longer used.
This commit is contained in:
Michael Schimmel
2026-02-19 14:05:32 +01:00
parent 125cf039d5
commit 5e03be17ad
3 changed files with 4 additions and 5 deletions
-1
View File
@@ -92,7 +92,6 @@ impl<'a> Parser<'a> {
TokenKind::Identifier(id) => {
match id.as_ref() {
"..." => UntypedKind::Nop,
"void" => UntypedKind::Constant(Value::Void),
_ => UntypedKind::Identifier(id.into()),
}
}