Skip to content

Commit

Permalink
appease lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jackschu committed Aug 24, 2024
1 parent 4308c48 commit 025a590
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions grammar.js
Original file line number Diff line number Diff line change
Expand Up @@ -802,12 +802,12 @@ module.exports = grammar({

call_expression: $ => choice(
prec('call', seq(
field('function', choice($.expression, $.import)),
field('arguments', $.arguments),
field('function', choice($.expression, $.import)),
field('arguments', $.arguments),
)),
prec('template_call', seq(
field('function', choice($.primary_expression, $.new_expression)),
field('arguments', $.template_string),
field('function', choice($.primary_expression, $.new_expression)),
field('arguments', $.template_string),
)),
prec('member', seq(
field('function', $.primary_expression),
Expand Down

0 comments on commit 025a590

Please sign in to comment.