1
1
mirror of https://github.com/casey/just.git synced 2024-07-14 17:20:31 +03:00

Add shell-expanded string syntax to grammar (#2223)

This commit is contained in:
Casey Rodarmor 2024-07-04 17:43:17 -07:00 committed by GitHub
parent 42691e1043
commit 1242bd64aa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -98,10 +98,10 @@ value : NAME '(' sequence? ')'
| string
| '(' expression ')'
string : STRING
| INDENTED_STRING
| RAW_STRING
| INDENTED_RAW_STRING
string : 'x'? STRING
| 'x'? INDENTED_STRING
| 'x'? RAW_STRING
| 'x'? INDENTED_RAW_STRING
sequence : expression ',' sequence
| expression ','?