minor cleanup

This commit is contained in:
mhoffm
2021-06-12 21:21:35 +02:00
parent 1621246b8d
commit 0b8859a794
2 changed files with 4 additions and 1 deletions

View File

@@ -150,7 +150,10 @@ module.exports = grammar({
':',
),
for_cond: $ => seq('if', $.expression),
for_cond: $ => seq(
'if',
$.expression,
),
variable_expr: $ => $.identifier,