Skip to content

Commit f0c5f8c

Browse files
committed
run linter with fix
1 parent fc5aec4 commit f0c5f8c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

grammar.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -774,8 +774,8 @@ module.exports = grammar({
774774
$._call_signature,
775775
),
776776
choice(
777-
seq($._shorthand_arrow, field('body', $.expression)),
778-
seq(choice('=>', $._shorthand_arrow), field('body', $.statement_block,)),
777+
seq($._shorthand_arrow, field('body', $.expression)),
778+
seq(choice('=>', $._shorthand_arrow), field('body', $.statement_block)),
779779
),
780780
),
781781

@@ -788,7 +788,7 @@ module.exports = grammar({
788788
call_expression: $ => choice(
789789
prec('call', seq(
790790
field('function', choice($.primary_expression, $.import)),
791-
field('arguments', choice($.arguments, $.template_string)),
791+
field('arguments', choice($.arguments, $.template_string)),
792792
)),
793793
prec('template_call', seq(
794794
field('function', $.primary_expression),
@@ -810,7 +810,7 @@ module.exports = grammar({
810810
prec('new_no_args', seq(
811811
'new',
812812
field('constructor', $.primary_expression),
813-
))
813+
)),
814814
),
815815

816816
await_expression: $ => prec('unary_void', seq(

0 commit comments

Comments
 (0)