From fc9a92046a8048ddce59f6c10b096d59e0280903 Mon Sep 17 00:00:00 2001 From: Almost89 <78914413+Almost89@users.noreply.github.com> Date: Sat, 22 Feb 2025 20:21:17 +0000 Subject: [PATCH] fix typo and formatting issues, tweak wording --- docs/syntax-pattern-and-match-expressions.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/docs/syntax-pattern-and-match-expressions.md b/docs/syntax-pattern-and-match-expressions.md index 21ede2d..109b00c 100644 --- a/docs/syntax-pattern-and-match-expressions.md +++ b/docs/syntax-pattern-and-match-expressions.md @@ -40,7 +40,7 @@ local function parse_simple_expr(): AstExprNode end ``` -The match expression distils the most important parts of the first example but removes all repetition and verbosity. +The match expression distils the most important parts of the first example but removes almost all repetition and verbosity. ## Design @@ -48,13 +48,12 @@ There are two main components proposed in this RFC: - patterns, which check if a value *matches* some definition; and - match expressions, which match one value to a collection of arms and return a consequence of the arm if it's pattern matches. -The syntax is inspired heavily by [Rust's match expression](https://doc.rust-lang.org/reference/expressions/match-expr.html) and [pattern syntax](https://doc.rust-lang.org/reference/patterns.html) . The proposed grammar changes are below: ```ebnf -namepattern = NAME | NAME '[' exp ']' | namepattern '.' NAME -pattern = NUMBER | STRING | 'nil' | 'true' | 'false' | stringinterp | namepattern | '*' | pattern 'or' pattern | '(' pattern ')' | NUMBER 'until' NUMBER | 'not' pattern +patternname = NAME | NAME '[' exp ']' | patternname '.' NAME +pattern = NUMBER | STRING | 'nil' | 'true' | 'false' | stringinterp | patternname | '*' | pattern 'or' pattern | '(' pattern ')' | NUMBER 'until' NUMBER | 'not' pattern matcharm = pattern ['if' exp] '->' exp matcharmlist = matcharm {',' matcharm} [','] matchexp = 'for' exp 'match' '(' matcharmlist ')' @@ -62,6 +61,8 @@ matchexp = 'for' exp 'match' '(' matcharmlist ')' simpleexp = NUMBER | STRING | 'nil' | 'true' | 'false' | '...' | tableconstructor | attributes 'function' funcbody | prefixexp | ifelseexp | stringinterp | matchexp ``` +This syntax is heavily inspired by [Rust's match expression](https://doc.rust-lang.org/reference/expressions/match-expr.html) and [pattern syntax](https://doc.rust-lang.org/reference/patterns.html). + ### Patterns Patterns are the most powerful part of this RFC and without them match expressions would be next to useless. The syntax is designed to be extensible and flexible enough for use in other areas of the language in future. @@ -216,7 +217,7 @@ local sides = for shape match ( "line" -> 1, "triangle" -> 3, "square" or "rectangle" -> 4, - "circle" -> error("circle don't have sides"), + "circle" -> error("circles don't have sides"), * -> error(`unknown shape {shape}`), ) ```