remove unnecessary choice

This commit is contained in:
Dmitriy Pleshevskiy 2022-12-10 23:09:11 +03:00
parent 03904d1cd3
commit 16d8b4c5f7
Signed by: pleshevskiy
GPG Key ID: 1B59187B161C0215
4 changed files with 43 additions and 49 deletions

View File

@ -132,14 +132,12 @@ module.exports = grammar({
),
text_block: ($) =>
choice(
seq(
alias($._text_block_start, "|"),
optional($.language),
/\s/,
alias($._text_block_raw_text, $.raw_text),
alias($._text_block_end, "|")
)
),
language: ($) => /\w+/,

View File

@ -9,5 +9,6 @@ if [ ! -z $(git diff --cached --name-only | grep -e "^grammar.js$") ]
then
make build
make build-wasm
git add src bindings *.wasm
fi

View File

@ -538,9 +538,6 @@
]
},
"text_block": {
"type": "CHOICE",
"members": [
{
"type": "SEQ",
"members": [
{
@ -587,8 +584,6 @@
"value": "|"
}
]
}
]
},
"language": {
"type": "PATTERN",

Binary file not shown.