Skip to content

Commit

Permalink
Fix piped print statement with expression list
Browse files Browse the repository at this point in the history
  • Loading branch information
Beaglefoot committed Oct 15, 2023
1 parent 374da90 commit 78d35f2
Show file tree
Hide file tree
Showing 4 changed files with 5,588 additions and 5,688 deletions.
2 changes: 1 addition & 1 deletion grammar.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ module.exports = grammar({
'binary_plus',
$.string_concat,
$.unary_exp,
$.piped_io_exp,
'binary_relation',
'binary_match',
$._binary_in,
'binary_and',
'binary_or',
$.ternary_exp,
$.exp_list,
$.piped_io_exp,
$.range_pattern,
$._statement,
],
Expand Down
8 changes: 4 additions & 4 deletions src/grammar.json
Original file line number Diff line number Diff line change
Expand Up @@ -2990,10 +2990,6 @@
"type": "SYMBOL",
"name": "unary_exp"
},
{
"type": "SYMBOL",
"name": "piped_io_exp"
},
{
"type": "STRING",
"value": "binary_relation"
Expand Down Expand Up @@ -3022,6 +3018,10 @@
"type": "SYMBOL",
"name": "exp_list"
},
{
"type": "SYMBOL",
"name": "piped_io_exp"
},
{
"type": "SYMBOL",
"name": "range_pattern"
Expand Down
Loading

0 comments on commit 78d35f2

Please sign in to comment.