use regex for arrow to fix long arrow bug
This commit is contained in:
parent
6835da6d3c
commit
8921cc8bbc
5 changed files with 42 additions and 87 deletions
|
@ -9,7 +9,6 @@ module.exports = grammar({
|
||||||
|
|
||||||
conflicts: ($) => [
|
conflicts: ($) => [
|
||||||
[$.shape_key],
|
[$.shape_key],
|
||||||
[$.arrow],
|
|
||||||
[$._shape_path],
|
[$._shape_path],
|
||||||
[$._shape_block],
|
[$._shape_block],
|
||||||
[$._shape_block_definition],
|
[$._shape_block_definition],
|
||||||
|
@ -174,13 +173,7 @@ module.exports = grammar({
|
||||||
|
|
||||||
_arrow: ($) => seq(spaces, $.arrow),
|
_arrow: ($) => seq(spaces, $.arrow),
|
||||||
|
|
||||||
arrow: ($) =>
|
arrow: ($) => choice(/-+>/, /--+/, /<-+/, /<-+>/),
|
||||||
choice(
|
|
||||||
seq("--", repeat($._dash)),
|
|
||||||
seq("<-", repeat($._dash)),
|
|
||||||
seq("<-", repeat($._dash), ">"),
|
|
||||||
seq(repeat($._dash), "->")
|
|
||||||
),
|
|
||||||
|
|
||||||
_dash: ($) => token.immediate("-"),
|
_dash: ($) => token.immediate("-"),
|
||||||
|
|
||||||
|
|
|
@ -1007,72 +1007,20 @@
|
||||||
"type": "CHOICE",
|
"type": "CHOICE",
|
||||||
"members": [
|
"members": [
|
||||||
{
|
{
|
||||||
"type": "SEQ",
|
"type": "PATTERN",
|
||||||
"members": [
|
"value": "-+>"
|
||||||
{
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "--"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "REPEAT",
|
|
||||||
"content": {
|
|
||||||
"type": "SYMBOL",
|
|
||||||
"name": "_dash"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "SEQ",
|
"type": "PATTERN",
|
||||||
"members": [
|
"value": "--+"
|
||||||
{
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "<-"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "REPEAT",
|
|
||||||
"content": {
|
|
||||||
"type": "SYMBOL",
|
|
||||||
"name": "_dash"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "SEQ",
|
"type": "PATTERN",
|
||||||
"members": [
|
"value": "<-+"
|
||||||
{
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "<-"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "REPEAT",
|
|
||||||
"content": {
|
|
||||||
"type": "SYMBOL",
|
|
||||||
"name": "_dash"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "STRING",
|
|
||||||
"value": ">"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "SEQ",
|
"type": "PATTERN",
|
||||||
"members": [
|
"value": "<-+>"
|
||||||
{
|
|
||||||
"type": "REPEAT",
|
|
||||||
"content": {
|
|
||||||
"type": "SYMBOL",
|
|
||||||
"name": "_dash"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "->"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -1274,9 +1222,6 @@
|
||||||
[
|
[
|
||||||
"shape_key"
|
"shape_key"
|
||||||
],
|
],
|
||||||
[
|
|
||||||
"arrow"
|
|
||||||
],
|
|
||||||
[
|
[
|
||||||
"_shape_path"
|
"_shape_path"
|
||||||
],
|
],
|
||||||
|
|
|
@ -254,14 +254,6 @@
|
||||||
"type": "'",
|
"type": "'",
|
||||||
"named": false
|
"named": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"type": "--",
|
|
||||||
"named": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "->",
|
|
||||||
"named": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"type": "3d",
|
"type": "3d",
|
||||||
"named": false
|
"named": false
|
||||||
|
@ -274,14 +266,6 @@
|
||||||
"type": ";",
|
"type": ";",
|
||||||
"named": false
|
"named": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"type": "<-",
|
|
||||||
"named": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": ">",
|
|
||||||
"named": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"type": "`",
|
"type": "`",
|
||||||
"named": false
|
"named": false
|
||||||
|
|
BIN
src/parser.c
BIN
src/parser.c
Binary file not shown.
|
@ -64,6 +64,39 @@ biz <- baz
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
================================================================================
|
||||||
|
Connection with looooong arrow
|
||||||
|
================================================================================
|
||||||
|
foo ----------- bar
|
||||||
|
biz ----------> baz
|
||||||
|
biz <---------> baz
|
||||||
|
biz <---------- baz
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
(source_file
|
||||||
|
(connection
|
||||||
|
(shape_key)
|
||||||
|
(arrow)
|
||||||
|
(shape_key)
|
||||||
|
)
|
||||||
|
(connection
|
||||||
|
(shape_key)
|
||||||
|
(arrow)
|
||||||
|
(shape_key)
|
||||||
|
)
|
||||||
|
(connection
|
||||||
|
(shape_key)
|
||||||
|
(arrow)
|
||||||
|
(shape_key)
|
||||||
|
)
|
||||||
|
(connection
|
||||||
|
(shape_key)
|
||||||
|
(arrow)
|
||||||
|
(shape_key)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
================================================================================
|
================================================================================
|
||||||
Complex identifier connection
|
Complex identifier connection
|
||||||
|
|
Loading…
Reference in a new issue