@@ -62,7 +62,6 @@ module.exports = grammar({
6262 precedences : $ => [
6363 [
6464 'member' ,
65- 'template_call' ,
6665 'call' ,
6766 $ . update_expression ,
6867 'unary_void' ,
@@ -84,7 +83,7 @@ module.exports = grammar({
8483 ] ,
8584 [ 'new' , $ . primary_expression ] ,
8685 [ 'assign' , $ . primary_expression ] ,
87- [ 'member' , 'template_call' , ' new_args', 'call' , 'new_no_args' , $ . expression ] ,
86+ [ 'member' , 'new_args' , 'call' , 'new_no_args' , $ . expression ] ,
8887 [ 'declaration' , 'literal' ] ,
8988 [ $ . primary_expression , $ . statement_block , 'object' ] ,
9089 [ $ . meta_property , $ . import ] ,
@@ -791,10 +790,6 @@ module.exports = grammar({
791790 field ( 'function' , choice ( $ . primary_expression , $ . import ) ) ,
792791 field ( 'arguments' , choice ( $ . arguments , $ . template_string ) ) ,
793792 ) ) ,
794- prec ( 'template_call' , seq (
795- field ( 'function' , $ . primary_expression ) ,
796- field ( 'arguments' , $ . template_string ) ,
797- ) ) ,
798793 prec ( 'member' , seq (
799794 field ( 'function' , $ . primary_expression ) ,
800795 field ( 'optional_chain' , $ . optional_chain ) ,
0 commit comments