Skip to content

Commit

Permalink
Add shell-expanded string syntax to grammar (#2223)
Browse files Browse the repository at this point in the history
  • Loading branch information
casey authored Jul 5, 2024
1 parent 42691e1 commit 1242bd6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions GRAMMAR.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 ','?
Expand Down

0 comments on commit 1242bd6

Please sign in to comment.