Updated Grammar

This commit is contained in:
Maieul BOYER 2024-07-22 13:09:51 +02:00
parent f4ccb91db4
commit 9a6a1885e4
No known key found for this signature in database
974 changed files with 83363 additions and 84138 deletions

View file

@ -586,7 +586,7 @@ module.exports = grammar({
$.variable_name,
),
_special_variable_name: $ => alias(choice('*', '@', '?', '!', '#', '-', '$', '0', '_'), $.special_variable_name),
_special_variable_name: $ => alias(choice('*', '@', '?', '!', '#', '-', '$', '0'), $.special_variable_name),
word: _ => token(seq(
choice(
@ -612,7 +612,7 @@ module.exports = grammar({
'\\ ',
)),
))),
terminator: _ => choice(';', ';;', /\n/, '&'),
terminator: _ => choice(';', ';;', /\n/),
},
});