1
1
mirror of https://github.com/casey/just.git synced 2024-08-16 01:10:37 +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 | string
| '(' expression ')' | '(' expression ')'
string : STRING string : 'x'? STRING
| INDENTED_STRING | 'x'? INDENTED_STRING
| RAW_STRING | 'x'? RAW_STRING
| INDENTED_RAW_STRING | 'x'? INDENTED_RAW_STRING
sequence : expression ',' sequence sequence : expression ',' sequence
| expression ','? | expression ','?