This commit is contained in:
Dmitriy Pleshevskiy 2022-12-09 12:13:42 +03:00
parent cc131d63b1
commit 7310e22538
Signed by: pleshevskiy
GPG Key ID: 1B59187B161C0215
1 changed files with 1 additions and 1 deletions

View File

@ -239,7 +239,7 @@ module.exports = grammar({
line_comment: ($) => token(prec(PREC.COMMENT, seq("#", /.*/))),
_eol: ($) => token(prec(PREC.EOL, choice("\n", "\0"))),
_eol: ($) => token(prec(PREC.EOL, "\n")),
_end: ($) => seq(choice(";", $._eol)),
},
});