grammar: some cleanup

This commit is contained in:
Dmitriy Pleshevskiy 2023-06-21 23:52:40 +03:00
parent 1395b25364
commit 731be00903
Signed by: pleshevskiy
GPG key ID: 79C4487B44403985
5 changed files with 56 additions and 74 deletions

View file

@ -95,10 +95,8 @@ module.exports = grammar({
seq( seq(
$._connection_path, $._connection_path,
repeat1(seq($.arrow, $._connection_path)), repeat1(seq($.arrow, $._connection_path)),
seq(
optional(seq($._colon, optional($.label))), optional(seq($._colon, optional($.label))),
optional(seq(alias($._connection_block, $.block))) optional(seq(alias($._connection_block, $.block)))
)
), ),
_connection_path: ($) => _connection_path: ($) =>
@ -370,13 +368,13 @@ module.exports = grammar({
attr_value_list: mkList(($) => $.attr_value), attr_value_list: mkList(($) => $.attr_value),
attr_value: ($) => attr_value: ($) =>
seq(choice($.boolean, $.integer, $.float, $.string, $._unquoted_string)), choice($.boolean, $.integer, $.float, $.string, $._unquoted_string),
// -------------------------------------------- // --------------------------------------------
_dash: ($) => token.immediate("-"), _dash: ($) => token.immediate("-"),
_colon: ($) => seq(":"), _colon: ($) => token(":"),
arrow: ($) => token(prec(PREC.ARROW, choice(/-+>/, /--+/, /<-+/, /<-+>/))), arrow: ($) => token(prec(PREC.ARROW, choice(/-+>/, /--+/, /<-+/, /<-+>/))),

View file

@ -88,9 +88,6 @@
] ]
} }
}, },
{
"type": "SEQ",
"members": [
{ {
"type": "CHOICE", "type": "CHOICE",
"members": [ "members": [
@ -143,8 +140,6 @@
] ]
} }
] ]
}
]
}, },
"_connection_path": { "_connection_path": {
"type": "SEQ", "type": "SEQ",
@ -1976,9 +1971,6 @@
] ]
}, },
"attr_value": { "attr_value": {
"type": "SEQ",
"members": [
{
"type": "CHOICE", "type": "CHOICE",
"members": [ "members": [
{ {
@ -2002,8 +1994,6 @@
"name": "_unquoted_string" "name": "_unquoted_string"
} }
] ]
}
]
}, },
"_dash": { "_dash": {
"type": "IMMEDIATE_TOKEN", "type": "IMMEDIATE_TOKEN",
@ -2013,13 +2003,11 @@
} }
}, },
"_colon": { "_colon": {
"type": "SEQ", "type": "TOKEN",
"members": [ "content": {
{
"type": "STRING", "type": "STRING",
"value": ":" "value": ":"
} }
]
}, },
"arrow": { "arrow": {
"type": "TOKEN", "type": "TOKEN",

View file

@ -515,10 +515,6 @@
"type": "3d", "type": "3d",
"named": false "named": false
}, },
{
"type": ":",
"named": false
},
{ {
"type": ";", "type": ";",
"named": false "named": false

Binary file not shown.

Binary file not shown.