Remove nested 'parameters' field

The 'parameters' production rule does not need itself to have a
'parameters' field, this is redundant information.
This commit is contained in:
Bruno BELANYI 2022-06-02 09:33:37 +02:00
parent 76b558a982
commit e59aeed31a
4 changed files with 76 additions and 111 deletions

View file

@ -288,7 +288,7 @@ module.exports = grammar({
parameters: ($) => seq(
"(",
field("parameters", sepBy(",", $._typed_field)),
sepBy(",", $._typed_field),
")",
),