fix multi inline shape attrs
This commit is contained in:
parent
2bd0ded807
commit
975e4c299a
6 changed files with 125 additions and 116 deletions
|
@ -1,3 +1,3 @@
|
|||
Foo Bar -- Biz Baz
|
||||
-Bar-Foo- <- -Baz-Biz-
|
||||
foo.shape: 'oval'
|
||||
foo.bar.baz.shape: oval
|
||||
|
||||
|
|
46
grammar.js
46
grammar.js
|
@ -7,18 +7,13 @@ module.exports = grammar({
|
|||
// TODO: add the actual grammar rules
|
||||
source_file: ($) => repeat($._definition),
|
||||
|
||||
_definition: ($) =>
|
||||
choice(
|
||||
choice($._root_attribute, $._shape_attribute),
|
||||
$.connection,
|
||||
$.shape
|
||||
),
|
||||
_definition: ($) => choice($._root_attribute, $.connection, $.shape),
|
||||
|
||||
connection: ($) =>
|
||||
seq(
|
||||
$.identifier,
|
||||
choice(
|
||||
seq(seq($.arrow, $.identifier, ":", $.label)),
|
||||
seq(seq($.arrow, $.identifier, $._colon, $.label)),
|
||||
seq(repeat1(seq($.arrow, $.identifier)))
|
||||
),
|
||||
$._end
|
||||
|
@ -28,7 +23,10 @@ module.exports = grammar({
|
|||
seq(
|
||||
$.identifier,
|
||||
repeat(seq($.dot, $.identifier)),
|
||||
optional(seq(":", $.label)),
|
||||
choice(
|
||||
optional(seq($.dot, $._shape_attribute)),
|
||||
optional(seq($._colon, $.label))
|
||||
),
|
||||
$._end
|
||||
),
|
||||
|
||||
|
@ -39,12 +37,7 @@ module.exports = grammar({
|
|||
attr_value: ($) => choice($.string, $._unquoted_string),
|
||||
|
||||
_root_attribute: ($) =>
|
||||
seq(
|
||||
alias($._root_attr_key, $.attr_key),
|
||||
":",
|
||||
alias($.label, $.attr_value),
|
||||
$._end
|
||||
),
|
||||
seq(alias($._root_attr_key, $.attr_key), $._colon, $.attr_value, $._end),
|
||||
|
||||
_root_attr_key: ($) => "direction",
|
||||
|
||||
|
@ -53,19 +46,14 @@ module.exports = grammar({
|
|||
alias("style", $.attr_key),
|
||||
$.dot,
|
||||
alias($._style_attr_key, $.attr_key),
|
||||
":",
|
||||
$.attr_value,
|
||||
$._end
|
||||
$._colon,
|
||||
$.attr_value
|
||||
),
|
||||
|
||||
_shape_attribute: ($) =>
|
||||
seq(
|
||||
$.identifier,
|
||||
$.dot,
|
||||
choice(
|
||||
seq(alias($._shape_attr_key, $.attr_key), ":", $.attr_value, $._end),
|
||||
$._style_attribute
|
||||
)
|
||||
choice(
|
||||
seq(alias($._shape_attr_key, $.attr_key), $._colon, $.attr_value),
|
||||
$._style_attribute
|
||||
),
|
||||
|
||||
_shape_attr_key: ($) =>
|
||||
|
@ -114,6 +102,8 @@ module.exports = grammar({
|
|||
)
|
||||
),
|
||||
|
||||
_colon: ($) => seq(repeat(" "), ":", repeat(" ")),
|
||||
|
||||
_dash: ($) => token.immediate("-"),
|
||||
|
||||
_word: ($) => /[\w\d]+/,
|
||||
|
@ -128,13 +118,13 @@ module.exports = grammar({
|
|||
)
|
||||
),
|
||||
|
||||
_unquoted_string: ($) => /[^\n;{]+/,
|
||||
_unquoted_string: ($) => token.immediate(/[^'"`\n;{]+/),
|
||||
|
||||
string: ($) =>
|
||||
choice(
|
||||
seq("'", repeat(token(/[^'\n]+/)), "'"),
|
||||
seq('"', repeat(token(/[^'\n]+/)), '"'),
|
||||
seq("`", repeat(token(/[^'\n]+/)), "`")
|
||||
seq("'", repeat(token.immediate(/[^'\n]+/)), "'"),
|
||||
seq('"', repeat(token.immediate(/[^"\n]+/)), '"'),
|
||||
seq("`", repeat(token.immediate(/[^`\n]+/)), "`")
|
||||
),
|
||||
|
||||
_end: ($) => choice(";", "\n", "\0"),
|
||||
|
|
169
src/grammar.json
169
src/grammar.json
|
@ -13,17 +13,8 @@
|
|||
"type": "CHOICE",
|
||||
"members": [
|
||||
{
|
||||
"type": "CHOICE",
|
||||
"members": [
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "_root_attribute"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "_shape_attribute"
|
||||
}
|
||||
]
|
||||
"type": "SYMBOL",
|
||||
"name": "_root_attribute"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
|
@ -60,8 +51,8 @@
|
|||
"name": "identifier"
|
||||
},
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": ":"
|
||||
"type": "SYMBOL",
|
||||
"name": "_colon"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
|
@ -127,20 +118,46 @@
|
|||
"type": "CHOICE",
|
||||
"members": [
|
||||
{
|
||||
"type": "SEQ",
|
||||
"type": "CHOICE",
|
||||
"members": [
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": ":"
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "dot"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "_shape_attribute"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "label"
|
||||
"type": "BLANK"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "BLANK"
|
||||
"type": "CHOICE",
|
||||
"members": [
|
||||
{
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "_colon"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "label"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "BLANK"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -193,17 +210,12 @@
|
|||
"value": "attr_key"
|
||||
},
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": ":"
|
||||
"type": "SYMBOL",
|
||||
"name": "_colon"
|
||||
},
|
||||
{
|
||||
"type": "ALIAS",
|
||||
"content": {
|
||||
"type": "SYMBOL",
|
||||
"name": "label"
|
||||
},
|
||||
"named": true,
|
||||
"value": "attr_value"
|
||||
"type": "SYMBOL",
|
||||
"name": "attr_value"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
|
@ -241,64 +253,43 @@
|
|||
"value": "attr_key"
|
||||
},
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": ":"
|
||||
"type": "SYMBOL",
|
||||
"name": "_colon"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "attr_value"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "_end"
|
||||
}
|
||||
]
|
||||
},
|
||||
"_shape_attribute": {
|
||||
"type": "SEQ",
|
||||
"type": "CHOICE",
|
||||
"members": [
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "identifier"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "dot"
|
||||
},
|
||||
{
|
||||
"type": "CHOICE",
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "ALIAS",
|
||||
"content": {
|
||||
"type": "SYMBOL",
|
||||
"name": "_shape_attr_key"
|
||||
},
|
||||
"named": true,
|
||||
"value": "attr_key"
|
||||
},
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": ":"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "attr_value"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "_end"
|
||||
}
|
||||
]
|
||||
"type": "ALIAS",
|
||||
"content": {
|
||||
"type": "SYMBOL",
|
||||
"name": "_shape_attr_key"
|
||||
},
|
||||
"named": true,
|
||||
"value": "attr_key"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "_style_attribute"
|
||||
"name": "_colon"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "attr_value"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "_style_attribute"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -489,6 +480,29 @@
|
|||
]
|
||||
}
|
||||
},
|
||||
"_colon": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "REPEAT",
|
||||
"content": {
|
||||
"type": "STRING",
|
||||
"value": " "
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": ":"
|
||||
},
|
||||
{
|
||||
"type": "REPEAT",
|
||||
"content": {
|
||||
"type": "STRING",
|
||||
"value": " "
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_dash": {
|
||||
"type": "IMMEDIATE_TOKEN",
|
||||
"content": {
|
||||
|
@ -578,8 +592,11 @@
|
|||
}
|
||||
},
|
||||
"_unquoted_string": {
|
||||
"type": "PATTERN",
|
||||
"value": "[^\\n;{]+"
|
||||
"type": "IMMEDIATE_TOKEN",
|
||||
"content": {
|
||||
"type": "PATTERN",
|
||||
"value": "[^'\"`\\n;{]+"
|
||||
}
|
||||
},
|
||||
"string": {
|
||||
"type": "CHOICE",
|
||||
|
@ -594,7 +611,7 @@
|
|||
{
|
||||
"type": "REPEAT",
|
||||
"content": {
|
||||
"type": "TOKEN",
|
||||
"type": "IMMEDIATE_TOKEN",
|
||||
"content": {
|
||||
"type": "PATTERN",
|
||||
"value": "[^'\\n]+"
|
||||
|
@ -617,10 +634,10 @@
|
|||
{
|
||||
"type": "REPEAT",
|
||||
"content": {
|
||||
"type": "TOKEN",
|
||||
"type": "IMMEDIATE_TOKEN",
|
||||
"content": {
|
||||
"type": "PATTERN",
|
||||
"value": "[^'\\n]+"
|
||||
"value": "[^\"\\n]+"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -640,10 +657,10 @@
|
|||
{
|
||||
"type": "REPEAT",
|
||||
"content": {
|
||||
"type": "TOKEN",
|
||||
"type": "IMMEDIATE_TOKEN",
|
||||
"content": {
|
||||
"type": "PATTERN",
|
||||
"value": "[^'\\n]+"
|
||||
"value": "[^`\\n]+"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
@ -75,6 +75,14 @@
|
|||
"multiple": true,
|
||||
"required": true,
|
||||
"types": [
|
||||
{
|
||||
"type": "attr_key",
|
||||
"named": true
|
||||
},
|
||||
{
|
||||
"type": "attr_value",
|
||||
"named": true
|
||||
},
|
||||
{
|
||||
"type": "dot",
|
||||
"named": true
|
||||
|
@ -110,14 +118,6 @@
|
|||
"type": "connection",
|
||||
"named": true
|
||||
},
|
||||
{
|
||||
"type": "dot",
|
||||
"named": true
|
||||
},
|
||||
{
|
||||
"type": "identifier",
|
||||
"named": true
|
||||
},
|
||||
{
|
||||
"type": "shape",
|
||||
"named": true
|
||||
|
|
BIN
src/parser.c
BIN
src/parser.c
Binary file not shown.
|
@ -15,11 +15,13 @@ Inline shape attribute
|
|||
==================
|
||||
|
||||
foo.shape: oval
|
||||
foo.bar.baz.shape: oval
|
||||
|
||||
---
|
||||
|
||||
(source_file
|
||||
(identifier) (dot) (attr_key) (attr_value)
|
||||
(shape (identifier) (dot) (attr_key) (attr_value))
|
||||
(shape (identifier) (dot) (identifier) (dot) (identifier) (dot) (attr_key) (attr_value))
|
||||
)
|
||||
|
||||
==================
|
||||
|
@ -31,7 +33,7 @@ foo.style.opacity: 5
|
|||
---
|
||||
|
||||
(source_file
|
||||
(identifier) (dot) (attr_key) (dot) (attr_key) (attr_value)
|
||||
(shape (identifier) (dot) (attr_key) (dot) (attr_key) (attr_value))
|
||||
)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue