remove string interps as they aren't static

This commit is contained in:
Almost89 2025-03-06 14:24:51 +00:00
parent c64fa52b74
commit fffebaf9fa

View file

@ -52,7 +52,7 @@ There are two main components proposed in this RFC:
The proposed grammar changes are below:
```ebnf
pattern = NUMBER | STRING | 'nil' | 'true' | 'false' | stringinterp | '*' | pattern 'or' pattern | '(' pattern ')' | NUMBER 'until' NUMBER | 'not' pattern
pattern = NUMBER | STRING | 'nil' | 'true' | 'false' | '*' | pattern 'or' pattern | '(' pattern ')' | NUMBER 'until' NUMBER | 'not' pattern
matcharm = pattern ['if' exp] '->' exp
matcharmlist = matcharm {',' matcharm} [',']
matchexp = 'for' exp 'match' '(' matcharmlist ')'
@ -70,11 +70,12 @@ The main purpose of a pattern is to check if a value *matches* some definition.
#### Exact
The *exact* pattern matches exactly what value is given to it. A pattern is an exact if given the following:
The *exact* pattern matches exactly what value is given to it. The following data types are valid exact patterns:
- Strings
- Numbers
- Booleans
- Strings and interpolated strings;
- Numbers; and finally
- Booleans.
Anything else produces a syntax error.
> Identifiers and index expressions were included in an older version of this RFC, however, they were removed as there were few valid use cases for dynamic patterns and all they do is increase complexity.