chore: remove trailing spaces from identifier
This commit is contained in:
parent
811520dfd4
commit
7a76b25c11
4 changed files with 223 additions and 209 deletions
|
@ -1,6 +1,5 @@
|
||||||
|
foo -- bar
|
||||||
|
biz -> baz
|
||||||
foo
|
biz <-> baz
|
||||||
|
biz <- baz
|
||||||
bar : Foo Bar; baz
|
|
||||||
|
|
||||||
|
|
41
grammar.js
41
grammar.js
|
@ -1,11 +1,14 @@
|
||||||
|
const spaces = repeat(" ");
|
||||||
|
|
||||||
module.exports = grammar({
|
module.exports = grammar({
|
||||||
name: "d2",
|
name: "d2",
|
||||||
|
|
||||||
// TODO: handle empty lines
|
|
||||||
extras: ($) => [],
|
extras: ($) => [],
|
||||||
|
|
||||||
word: ($) => $._word,
|
word: ($) => $._word,
|
||||||
|
|
||||||
|
conflicts: ($) => [[$.identifier], [$.arrow]],
|
||||||
|
|
||||||
rules: {
|
rules: {
|
||||||
source_file: ($) => repeat($._definition),
|
source_file: ($) => repeat($._definition),
|
||||||
|
|
||||||
|
@ -14,8 +17,8 @@ module.exports = grammar({
|
||||||
|
|
||||||
connection: ($) =>
|
connection: ($) =>
|
||||||
seq(
|
seq(
|
||||||
$.identifier,
|
$._identifier,
|
||||||
repeat1(seq($.arrow, $.identifier)),
|
repeat1(seq($._arrow, $._identifier)),
|
||||||
optional(
|
optional(
|
||||||
choice(seq($.dot, $._connection_attribute), seq($._colon, $.label))
|
choice(seq($.dot, $._connection_attribute), seq($._colon, $.label))
|
||||||
),
|
),
|
||||||
|
@ -24,16 +27,14 @@ module.exports = grammar({
|
||||||
|
|
||||||
shape: ($) =>
|
shape: ($) =>
|
||||||
seq(
|
seq(
|
||||||
$.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, $.label))
|
||||||
),
|
),
|
||||||
$._end
|
$._end
|
||||||
),
|
),
|
||||||
|
|
||||||
identifier: ($) => $._identifier,
|
|
||||||
|
|
||||||
label: ($) => choice($.string, $._unquoted_string),
|
label: ($) => choice($.string, $._unquoted_string),
|
||||||
|
|
||||||
attr_value: ($) => choice($.string, $._unquoted_string),
|
attr_value: ($) => choice($.string, $._unquoted_string),
|
||||||
|
@ -93,36 +94,34 @@ module.exports = grammar({
|
||||||
|
|
||||||
_connection_attr_key: ($) => choice("source-arrowhead", "target-arrowhead"),
|
_connection_attr_key: ($) => choice("source-arrowhead", "target-arrowhead"),
|
||||||
|
|
||||||
_identifier: ($) =>
|
_identifier: ($) => seq(spaces, $.identifier),
|
||||||
prec.right(
|
|
||||||
|
identifier: ($) =>
|
||||||
seq(
|
seq(
|
||||||
repeat(" "),
|
|
||||||
optional($._dash),
|
optional($._dash),
|
||||||
choice(
|
choice(
|
||||||
$._word,
|
$._word,
|
||||||
repeat1(seq($._word, choice(repeat(" "), $._dash), $._word))
|
repeat1(seq($._word, choice(spaces, $._dash), $._word))
|
||||||
),
|
),
|
||||||
optional($._dash),
|
optional($._dash)
|
||||||
repeat(" ")
|
|
||||||
)
|
|
||||||
),
|
),
|
||||||
|
|
||||||
_colon: ($) => seq(repeat(" "), ":", repeat(" ")),
|
_colon: ($) => seq(spaces, ":", spaces),
|
||||||
|
|
||||||
_word: ($) => /[\w\d]+/,
|
_arrow: ($) => seq(spaces, $.arrow),
|
||||||
|
|
||||||
arrow: ($) =>
|
arrow: ($) =>
|
||||||
prec.left(
|
|
||||||
choice(
|
choice(
|
||||||
seq("--", repeat($._dash)),
|
seq("--", repeat($._dash)),
|
||||||
seq("<-", repeat($._dash)),
|
seq("<-", repeat($._dash)),
|
||||||
seq("<-", repeat($._dash), ">"),
|
seq("<-", repeat($._dash), ">"),
|
||||||
seq(repeat($._dash), "->")
|
seq(repeat($._dash), "->")
|
||||||
)
|
|
||||||
),
|
),
|
||||||
|
|
||||||
_dash: ($) => token.immediate("-"),
|
_dash: ($) => token.immediate("-"),
|
||||||
|
|
||||||
|
dot: ($) => token.immediate("."),
|
||||||
|
|
||||||
_unquoted_string: ($) => token.immediate(/[^'"`\n;{]+/),
|
_unquoted_string: ($) => token.immediate(/[^'"`\n;{]+/),
|
||||||
|
|
||||||
string: ($) =>
|
string: ($) =>
|
||||||
|
@ -132,9 +131,9 @@ module.exports = grammar({
|
||||||
seq("`", repeat(token.immediate(/[^`\n]+/)), "`")
|
seq("`", repeat(token.immediate(/[^`\n]+/)), "`")
|
||||||
),
|
),
|
||||||
|
|
||||||
_eof: ($) => choice("\n", "\0"),
|
_word: ($) => /[\w\d]+/,
|
||||||
_end: ($) => seq(repeat(" "), choice(";", $._eof)),
|
|
||||||
|
|
||||||
dot: ($) => ".",
|
_eof: ($) => choice("\n", "\0"),
|
||||||
|
_end: ($) => seq(spaces, choice(";", $._eof)),
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
"members": [
|
"members": [
|
||||||
{
|
{
|
||||||
"type": "SYMBOL",
|
"type": "SYMBOL",
|
||||||
"name": "identifier"
|
"name": "_identifier"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "REPEAT1",
|
"type": "REPEAT1",
|
||||||
|
@ -44,11 +44,11 @@
|
||||||
"members": [
|
"members": [
|
||||||
{
|
{
|
||||||
"type": "SYMBOL",
|
"type": "SYMBOL",
|
||||||
"name": "arrow"
|
"name": "_arrow"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "SYMBOL",
|
"type": "SYMBOL",
|
||||||
"name": "identifier"
|
"name": "_identifier"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -103,7 +103,7 @@
|
||||||
"members": [
|
"members": [
|
||||||
{
|
{
|
||||||
"type": "SYMBOL",
|
"type": "SYMBOL",
|
||||||
"name": "identifier"
|
"name": "_identifier"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "REPEAT",
|
"type": "REPEAT",
|
||||||
|
@ -116,7 +116,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "SYMBOL",
|
"type": "SYMBOL",
|
||||||
"name": "identifier"
|
"name": "_identifier"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -166,10 +166,6 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"identifier": {
|
|
||||||
"type": "SYMBOL",
|
|
||||||
"name": "_identifier"
|
|
||||||
},
|
|
||||||
"label": {
|
"label": {
|
||||||
"type": "CHOICE",
|
"type": "CHOICE",
|
||||||
"members": [
|
"members": [
|
||||||
|
@ -414,9 +410,6 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"_identifier": {
|
"_identifier": {
|
||||||
"type": "PREC_RIGHT",
|
|
||||||
"value": 0,
|
|
||||||
"content": {
|
|
||||||
"type": "SEQ",
|
"type": "SEQ",
|
||||||
"members": [
|
"members": [
|
||||||
{
|
{
|
||||||
|
@ -426,6 +419,15 @@
|
||||||
"value": " "
|
"value": " "
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"type": "SYMBOL",
|
||||||
|
"name": "identifier"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"identifier": {
|
||||||
|
"type": "SEQ",
|
||||||
|
"members": [
|
||||||
{
|
{
|
||||||
"type": "CHOICE",
|
"type": "CHOICE",
|
||||||
"members": [
|
"members": [
|
||||||
|
@ -490,16 +492,8 @@
|
||||||
"type": "BLANK"
|
"type": "BLANK"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "REPEAT",
|
|
||||||
"content": {
|
|
||||||
"type": "STRING",
|
|
||||||
"value": " "
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"_colon": {
|
"_colon": {
|
||||||
"type": "SEQ",
|
"type": "SEQ",
|
||||||
|
@ -524,14 +518,23 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"_word": {
|
"_arrow": {
|
||||||
"type": "PATTERN",
|
"type": "SEQ",
|
||||||
"value": "[\\w\\d]+"
|
"members": [
|
||||||
|
{
|
||||||
|
"type": "REPEAT",
|
||||||
|
"content": {
|
||||||
|
"type": "STRING",
|
||||||
|
"value": " "
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "SYMBOL",
|
||||||
|
"name": "arrow"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"arrow": {
|
"arrow": {
|
||||||
"type": "PREC_LEFT",
|
|
||||||
"value": 0,
|
|
||||||
"content": {
|
|
||||||
"type": "CHOICE",
|
"type": "CHOICE",
|
||||||
"members": [
|
"members": [
|
||||||
{
|
{
|
||||||
|
@ -603,7 +606,6 @@
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"_dash": {
|
"_dash": {
|
||||||
"type": "IMMEDIATE_TOKEN",
|
"type": "IMMEDIATE_TOKEN",
|
||||||
|
@ -612,6 +614,13 @@
|
||||||
"value": "-"
|
"value": "-"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"dot": {
|
||||||
|
"type": "IMMEDIATE_TOKEN",
|
||||||
|
"content": {
|
||||||
|
"type": "STRING",
|
||||||
|
"value": "."
|
||||||
|
}
|
||||||
|
},
|
||||||
"_unquoted_string": {
|
"_unquoted_string": {
|
||||||
"type": "IMMEDIATE_TOKEN",
|
"type": "IMMEDIATE_TOKEN",
|
||||||
"content": {
|
"content": {
|
||||||
|
@ -693,6 +702,10 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"_word": {
|
||||||
|
"type": "PATTERN",
|
||||||
|
"value": "[\\w\\d]+"
|
||||||
|
},
|
||||||
"_eof": {
|
"_eof": {
|
||||||
"type": "CHOICE",
|
"type": "CHOICE",
|
||||||
"members": [
|
"members": [
|
||||||
|
@ -730,14 +743,17 @@
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
|
||||||
"dot": {
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "."
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"extras": [],
|
"extras": [],
|
||||||
"conflicts": [],
|
"conflicts": [
|
||||||
|
[
|
||||||
|
"identifier"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"arrow"
|
||||||
|
]
|
||||||
|
],
|
||||||
"precedences": [],
|
"precedences": [],
|
||||||
"externals": [],
|
"externals": [],
|
||||||
"inline": [],
|
"inline": [],
|
||||||
|
|
BIN
src/parser.c
BIN
src/parser.c
Binary file not shown.
Loading…
Reference in a new issue