Add 'element' field name to list

This commit is contained in:
Bruno BELANYI 2024-04-08 01:46:43 +01:00
parent d232c089df
commit 644f6483fe
4 changed files with 851 additions and 811 deletions

View file

@ -169,7 +169,7 @@ module.exports = grammar({
list_expression: ($) => seq(
"[",
optional(commaSeparated($._expr)),
optional(commaSeparated(field("element", $._expr))),
"]",
),