From 3c984653bb54a2fa888f7690cdceba453dd1c66c Mon Sep 17 00:00:00 2001 From: mhoffm Date: Sun, 13 Jun 2021 14:31:46 +0200 Subject: [PATCH] add template_expr to grammar; comment it out for now --- grammar.js | 1 + 1 file changed, 1 insertion(+) diff --git a/grammar.js b/grammar.js index e15a5de..37a186b 100644 --- a/grammar.js +++ b/grammar.js @@ -57,6 +57,7 @@ module.exports = grammar({ expr_term: $ => choice( $.literal_value, + // $.template_expr, $.collection_value, $.variable_expr, $.function_call,