This commit is contained in:
Almost89 2025-03-06 15:47:27 +00:00
parent 9f0a34a75c
commit 2be30ca7d3

View file

@ -30,7 +30,7 @@ end
The important information (such as whether `current_token.kind` is `"string"`, `"number"`, `"true"`, or `"false"`) isn't unreadable, but is hidden under a layer of extremely repetitive and verbose `if` statements. With the syntax proposed, this code can be simplified significantly: The important information (such as whether `current_token.kind` is `"string"`, `"number"`, `"true"`, or `"false"`) isn't unreadable, but is hidden under a layer of extremely repetitive and verbose `if` statements. With the syntax proposed, this code can be simplified significantly:
```luau ```luau
local function parse_simple_exr(): AstExprNode local function parse_simple_expr(): AstExprNode
return in current_token.kind match return in current_token.kind match
"string" -> parse_string_expr(), "string" -> parse_string_expr(),
"number" -> parse_number_expr(), "number" -> parse_number_expr(),