We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4308c48 commit 025a590Copy full SHA for 025a590
grammar.js
@@ -802,12 +802,12 @@ module.exports = grammar({
802
803
call_expression: $ => choice(
804
prec('call', seq(
805
- field('function', choice($.expression, $.import)),
806
- field('arguments', $.arguments),
+ field('function', choice($.expression, $.import)),
+ field('arguments', $.arguments),
807
)),
808
prec('template_call', seq(
809
- field('function', choice($.primary_expression, $.new_expression)),
810
- field('arguments', $.template_string),
+ field('function', choice($.primary_expression, $.new_expression)),
+ field('arguments', $.template_string),
811
812
prec('member', seq(
813
field('function', $.primary_expression),
0 commit comments