Add 'any' select pattern

This commit is contained in:
Bruno BELANYI 2024-07-01 13:46:22 +00:00
parent 2326d709fb
commit 970241b323
5 changed files with 981 additions and 916 deletions

View file

@ -163,6 +163,7 @@ module.exports = grammar({
_select_pattern: ($) => choice(
$._string_literal,
$.boolean_literal,
alias("any", $.any),
alias("default", $.default),
),