feat: allow generic types in a field declaration

syntax_id
Amaan Qureshi 2023-05-21 22:52:54 +07:00
parent 0bf8aca85a
commit 4baade3c69
No known key found for this signature in database
GPG Key ID: E67890ADC4227273
1 changed files with 2 additions and 1 deletions

@ -366,7 +366,8 @@ module.exports = grammar({
optional('*'),
field('type', choice(
$._type_identifier,
$.qualified_type
$.qualified_type,
$.generic_type,
))
)
),