add shape block
This commit is contained in:
parent
41e2ce2e57
commit
e7421caac0
6 changed files with 235 additions and 11 deletions
30
grammar.js
30
grammar.js
|
@ -8,8 +8,11 @@ module.exports = grammar({
|
||||||
word: ($) => $._word,
|
word: ($) => $._word,
|
||||||
|
|
||||||
conflicts: ($) => [
|
conflicts: ($) => [
|
||||||
|
[$._identifier],
|
||||||
[$.identifier],
|
[$.identifier],
|
||||||
[$.arrow],
|
[$.arrow],
|
||||||
|
[$._shape_block],
|
||||||
|
[$._shape_block_definition],
|
||||||
[$._style_attr_block],
|
[$._style_attr_block],
|
||||||
[$._inner_style_attribute],
|
[$._inner_style_attribute],
|
||||||
],
|
],
|
||||||
|
@ -18,7 +21,7 @@ module.exports = grammar({
|
||||||
source_file: ($) => repeat($._definition),
|
source_file: ($) => repeat($._definition),
|
||||||
|
|
||||||
_definition: ($) =>
|
_definition: ($) =>
|
||||||
choice($._end, $._root_attribute, $.connection, $.shape),
|
choice(seq(spaces, $._eof), $._root_attribute, $.connection, $.shape),
|
||||||
|
|
||||||
connection: ($) =>
|
connection: ($) =>
|
||||||
seq(
|
seq(
|
||||||
|
@ -35,7 +38,14 @@ module.exports = grammar({
|
||||||
$._identifier,
|
$._identifier,
|
||||||
repeat(seq($.dot, $._identifier)),
|
repeat(seq($.dot, $._identifier)),
|
||||||
optional(
|
optional(
|
||||||
choice(seq($.dot, $._shape_attribute), seq($._colon, $.label))
|
choice(
|
||||||
|
seq($.dot, $._shape_attribute),
|
||||||
|
seq(
|
||||||
|
$._colon,
|
||||||
|
optional($.label),
|
||||||
|
optional(alias($._shape_block, $.block))
|
||||||
|
)
|
||||||
|
)
|
||||||
),
|
),
|
||||||
$._end
|
$._end
|
||||||
),
|
),
|
||||||
|
@ -49,6 +59,22 @@ module.exports = grammar({
|
||||||
|
|
||||||
_root_attr_key: ($) => "direction",
|
_root_attr_key: ($) => "direction",
|
||||||
|
|
||||||
|
_shape_block: ($) =>
|
||||||
|
seq(
|
||||||
|
spaces,
|
||||||
|
"{",
|
||||||
|
spaces,
|
||||||
|
repeat(
|
||||||
|
choice(seq(spaces, $._eof), seq($._shape_block_definition, $._end))
|
||||||
|
),
|
||||||
|
optional(seq($._shape_block_definition, optional($._end))),
|
||||||
|
spaces,
|
||||||
|
"}"
|
||||||
|
),
|
||||||
|
|
||||||
|
_shape_block_definition: ($) =>
|
||||||
|
choice($.connection, $.shape, $._shape_attribute),
|
||||||
|
|
||||||
_shape_attribute: ($) =>
|
_shape_attribute: ($) =>
|
||||||
choice(
|
choice(
|
||||||
seq(alias($._shape_attr_key, $.attr_key), $._colon, $.attr_value),
|
seq(alias($._shape_attr_key, $.attr_key), $._colon, $.attr_value),
|
||||||
|
|
171
src/grammar.json
171
src/grammar.json
|
@ -13,8 +13,20 @@
|
||||||
"type": "CHOICE",
|
"type": "CHOICE",
|
||||||
"members": [
|
"members": [
|
||||||
{
|
{
|
||||||
"type": "SYMBOL",
|
"type": "SEQ",
|
||||||
"name": "_end"
|
"members": [
|
||||||
|
{
|
||||||
|
"type": "REPEAT",
|
||||||
|
"content": {
|
||||||
|
"type": "STRING",
|
||||||
|
"value": " "
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "SYMBOL",
|
||||||
|
"name": "_eof"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "SYMBOL",
|
"type": "SYMBOL",
|
||||||
|
@ -148,8 +160,33 @@
|
||||||
"name": "_colon"
|
"name": "_colon"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "SYMBOL",
|
"type": "CHOICE",
|
||||||
"name": "label"
|
"members": [
|
||||||
|
{
|
||||||
|
"type": "SYMBOL",
|
||||||
|
"name": "label"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "BLANK"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "CHOICE",
|
||||||
|
"members": [
|
||||||
|
{
|
||||||
|
"type": "ALIAS",
|
||||||
|
"content": {
|
||||||
|
"type": "SYMBOL",
|
||||||
|
"name": "_shape_block"
|
||||||
|
},
|
||||||
|
"named": true,
|
||||||
|
"value": "block"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "BLANK"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -234,6 +271,123 @@
|
||||||
"type": "STRING",
|
"type": "STRING",
|
||||||
"value": "direction"
|
"value": "direction"
|
||||||
},
|
},
|
||||||
|
"_shape_block": {
|
||||||
|
"type": "SEQ",
|
||||||
|
"members": [
|
||||||
|
{
|
||||||
|
"type": "REPEAT",
|
||||||
|
"content": {
|
||||||
|
"type": "STRING",
|
||||||
|
"value": " "
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "STRING",
|
||||||
|
"value": "{"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "REPEAT",
|
||||||
|
"content": {
|
||||||
|
"type": "STRING",
|
||||||
|
"value": " "
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "REPEAT",
|
||||||
|
"content": {
|
||||||
|
"type": "CHOICE",
|
||||||
|
"members": [
|
||||||
|
{
|
||||||
|
"type": "SEQ",
|
||||||
|
"members": [
|
||||||
|
{
|
||||||
|
"type": "REPEAT",
|
||||||
|
"content": {
|
||||||
|
"type": "STRING",
|
||||||
|
"value": " "
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "SYMBOL",
|
||||||
|
"name": "_eof"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "SEQ",
|
||||||
|
"members": [
|
||||||
|
{
|
||||||
|
"type": "SYMBOL",
|
||||||
|
"name": "_shape_block_definition"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "SYMBOL",
|
||||||
|
"name": "_end"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "CHOICE",
|
||||||
|
"members": [
|
||||||
|
{
|
||||||
|
"type": "SEQ",
|
||||||
|
"members": [
|
||||||
|
{
|
||||||
|
"type": "SYMBOL",
|
||||||
|
"name": "_shape_block_definition"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "CHOICE",
|
||||||
|
"members": [
|
||||||
|
{
|
||||||
|
"type": "SYMBOL",
|
||||||
|
"name": "_end"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "BLANK"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "BLANK"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "REPEAT",
|
||||||
|
"content": {
|
||||||
|
"type": "STRING",
|
||||||
|
"value": " "
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "STRING",
|
||||||
|
"value": "}"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"_shape_block_definition": {
|
||||||
|
"type": "CHOICE",
|
||||||
|
"members": [
|
||||||
|
{
|
||||||
|
"type": "SYMBOL",
|
||||||
|
"name": "connection"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "SYMBOL",
|
||||||
|
"name": "shape"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "SYMBOL",
|
||||||
|
"name": "_shape_attribute"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"_shape_attribute": {
|
"_shape_attribute": {
|
||||||
"type": "CHOICE",
|
"type": "CHOICE",
|
||||||
"members": [
|
"members": [
|
||||||
|
@ -884,12 +1038,21 @@
|
||||||
},
|
},
|
||||||
"extras": [],
|
"extras": [],
|
||||||
"conflicts": [
|
"conflicts": [
|
||||||
|
[
|
||||||
|
"_identifier"
|
||||||
|
],
|
||||||
[
|
[
|
||||||
"identifier"
|
"identifier"
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
"arrow"
|
"arrow"
|
||||||
],
|
],
|
||||||
|
[
|
||||||
|
"_shape_block"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"_shape_block_definition"
|
||||||
|
],
|
||||||
[
|
[
|
||||||
"_style_attr_block"
|
"_style_attr_block"
|
||||||
],
|
],
|
||||||
|
|
|
@ -39,6 +39,22 @@
|
||||||
{
|
{
|
||||||
"type": "attr_value",
|
"type": "attr_value",
|
||||||
"named": true
|
"named": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "block",
|
||||||
|
"named": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "connection",
|
||||||
|
"named": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "dot",
|
||||||
|
"named": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "shape",
|
||||||
|
"named": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
BIN
src/parser.c
BIN
src/parser.c
Binary file not shown.
|
@ -38,6 +38,7 @@ Block style attributes
|
||||||
================================================================================
|
================================================================================
|
||||||
foo.style: {
|
foo.style: {
|
||||||
opacity: 5
|
opacity: 5
|
||||||
|
|
||||||
fill: red;
|
fill: red;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -77,8 +78,3 @@ foo.style: { opacity: 5 }
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -83,3 +83,26 @@ bar : Foo Bar; baz
|
||||||
(shape (identifier))
|
(shape (identifier))
|
||||||
)
|
)
|
||||||
|
|
||||||
|
================================================================================
|
||||||
|
Shape block
|
||||||
|
================================================================================
|
||||||
|
|
||||||
|
foo: {
|
||||||
|
bar: {
|
||||||
|
baz: {
|
||||||
|
biz
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
(source_file
|
||||||
|
(shape (identifier) (block
|
||||||
|
(shape (identifier) (block
|
||||||
|
(shape (identifier) (block
|
||||||
|
(shape (identifier))
|
||||||
|
))
|
||||||
|
))
|
||||||
|
))
|
||||||
|
)
|
||||||
|
|
Loading…
Reference in a new issue