rewrite identifier as regular scanner
This commit is contained in:
parent
8fcd012702
commit
fc5a0fff47
8 changed files with 2058 additions and 883 deletions
|
@ -9,7 +9,6 @@
|
|||
"sources": [
|
||||
"bindings/node/binding.cc",
|
||||
"src/parser.c",
|
||||
"src/scanner.c",
|
||||
# If your language uses an external scanner, add it here.
|
||||
],
|
||||
"cflags_c": [
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
Foo bar
|
||||
-Biz-baz-
|
||||
Foo Bar -- Biz Baz
|
||||
-Bar-Foo- <- -Baz-Biz-
|
||||
|
||||
|
|
32
grammar.js
32
grammar.js
|
@ -1,8 +1,6 @@
|
|||
module.exports = grammar({
|
||||
name: "d2",
|
||||
|
||||
externals: ($) => [$._identifier],
|
||||
|
||||
rules: {
|
||||
// TODO: add the actual grammar rules
|
||||
source_file: ($) => repeat($._definition),
|
||||
|
@ -35,12 +33,32 @@ module.exports = grammar({
|
|||
|
||||
identifier: ($) => $._identifier,
|
||||
|
||||
_identifier: ($) =>
|
||||
prec.right(
|
||||
seq(
|
||||
repeat(" "),
|
||||
optional($._dash),
|
||||
choice(
|
||||
$._word,
|
||||
repeat1(seq($._word, choice(repeat(" "), $._dash), $._word))
|
||||
),
|
||||
optional($._dash),
|
||||
repeat(" ")
|
||||
)
|
||||
),
|
||||
|
||||
_dash: ($) => token.immediate("-"),
|
||||
|
||||
_word: ($) => /[\w\d]+/,
|
||||
|
||||
arrow: ($) =>
|
||||
choice(
|
||||
seq("--", repeat("-")),
|
||||
seq("<-", repeat("-")),
|
||||
seq("<-", repeat("-"), ">"),
|
||||
seq(repeat("-"), "->")
|
||||
prec.left(
|
||||
choice(
|
||||
seq("--", repeat($._dash)),
|
||||
seq("<-", repeat($._dash)),
|
||||
seq("<-", repeat($._dash), ">"),
|
||||
seq(repeat($._dash), "->")
|
||||
)
|
||||
),
|
||||
|
||||
_unquoted_string: ($) => /[^\n;{]+/,
|
||||
|
|
238
src/grammar.json
238
src/grammar.json
|
@ -170,78 +170,181 @@
|
|||
"type": "SYMBOL",
|
||||
"name": "_identifier"
|
||||
},
|
||||
"_identifier": {
|
||||
"type": "PREC_RIGHT",
|
||||
"value": 0,
|
||||
"content": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "REPEAT",
|
||||
"content": {
|
||||
"type": "STRING",
|
||||
"value": " "
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "CHOICE",
|
||||
"members": [
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "_dash"
|
||||
},
|
||||
{
|
||||
"type": "BLANK"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "CHOICE",
|
||||
"members": [
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "_word"
|
||||
},
|
||||
{
|
||||
"type": "REPEAT1",
|
||||
"content": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "_word"
|
||||
},
|
||||
{
|
||||
"type": "CHOICE",
|
||||
"members": [
|
||||
{
|
||||
"type": "REPEAT",
|
||||
"content": {
|
||||
"type": "STRING",
|
||||
"value": " "
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "_dash"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "_word"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "CHOICE",
|
||||
"members": [
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "_dash"
|
||||
},
|
||||
{
|
||||
"type": "BLANK"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "REPEAT",
|
||||
"content": {
|
||||
"type": "STRING",
|
||||
"value": " "
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"_dash": {
|
||||
"type": "IMMEDIATE_TOKEN",
|
||||
"content": {
|
||||
"type": "STRING",
|
||||
"value": "-"
|
||||
}
|
||||
},
|
||||
"_word": {
|
||||
"type": "PATTERN",
|
||||
"value": "[\\w\\d]+"
|
||||
},
|
||||
"arrow": {
|
||||
"type": "CHOICE",
|
||||
"members": [
|
||||
{
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": "--"
|
||||
},
|
||||
{
|
||||
"type": "REPEAT",
|
||||
"content": {
|
||||
"type": "PREC_LEFT",
|
||||
"value": 0,
|
||||
"content": {
|
||||
"type": "CHOICE",
|
||||
"members": [
|
||||
{
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": "-"
|
||||
"value": "--"
|
||||
},
|
||||
{
|
||||
"type": "REPEAT",
|
||||
"content": {
|
||||
"type": "SYMBOL",
|
||||
"name": "_dash"
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": "<-"
|
||||
},
|
||||
{
|
||||
"type": "REPEAT",
|
||||
"content": {
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": "-"
|
||||
"value": "<-"
|
||||
},
|
||||
{
|
||||
"type": "REPEAT",
|
||||
"content": {
|
||||
"type": "SYMBOL",
|
||||
"name": "_dash"
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": "<-"
|
||||
},
|
||||
{
|
||||
"type": "REPEAT",
|
||||
"content": {
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": "-"
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": ">"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "REPEAT",
|
||||
"content": {
|
||||
"value": "<-"
|
||||
},
|
||||
{
|
||||
"type": "REPEAT",
|
||||
"content": {
|
||||
"type": "SYMBOL",
|
||||
"name": "_dash"
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": "-"
|
||||
"value": ">"
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": "->"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "REPEAT",
|
||||
"content": {
|
||||
"type": "SYMBOL",
|
||||
"name": "_dash"
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": "->"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"_unquoted_string": {
|
||||
"type": "PATTERN",
|
||||
|
@ -330,12 +433,7 @@
|
|||
],
|
||||
"conflicts": [],
|
||||
"precedences": [],
|
||||
"externals": [
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "_identifier"
|
||||
}
|
||||
],
|
||||
"externals": [],
|
||||
"inline": [],
|
||||
"supertypes": []
|
||||
}
|
||||
|
|
|
@ -98,6 +98,10 @@
|
|||
"type": "\n",
|
||||
"named": false
|
||||
},
|
||||
{
|
||||
"type": " ",
|
||||
"named": false
|
||||
},
|
||||
{
|
||||
"type": "\"",
|
||||
"named": false
|
||||
|
@ -106,10 +110,6 @@
|
|||
"type": "'",
|
||||
"named": false
|
||||
},
|
||||
{
|
||||
"type": "-",
|
||||
"named": false
|
||||
},
|
||||
{
|
||||
"type": "--",
|
||||
"named": false
|
||||
|
|
2552
src/parser.c
2552
src/parser.c
File diff suppressed because it is too large
Load diff
|
@ -1,71 +0,0 @@
|
|||
#include <tree_sitter/parser.h>
|
||||
#include <wctype.h>
|
||||
|
||||
enum TokenType {
|
||||
IDENTIFIER
|
||||
};
|
||||
|
||||
void *tree_sitter_d2_external_scanner_create() { return NULL; }
|
||||
void tree_sitter_d2_external_scanner_destroy(void *payload) { }
|
||||
unsigned tree_sitter_d2_external_scanner_serialize(void *p, char *buffer) { return 0; }
|
||||
void tree_sitter_d2_external_scanner_deserialize(void *p, const char *b, unsigned n) {}
|
||||
|
||||
static void advance(TSLexer *lexer) { lexer->advance(lexer, false); }
|
||||
static void skip(TSLexer *lexer) { lexer->advance(lexer, true); }
|
||||
|
||||
static bool scan_identifier(TSLexer *lexer) {
|
||||
lexer->result_symbol = IDENTIFIER;
|
||||
while (iswspace(lexer->lookahead)) {
|
||||
skip(lexer);
|
||||
}
|
||||
|
||||
for (bool has_content = false;; has_content = true) {
|
||||
lexer->mark_end(lexer);
|
||||
|
||||
for (;;) {
|
||||
switch (lexer->lookahead) {
|
||||
case '{':
|
||||
case ':':
|
||||
case ';':
|
||||
case '<':
|
||||
case '.':
|
||||
case '\n':
|
||||
case '\0':
|
||||
return has_content;
|
||||
}
|
||||
|
||||
if (iswspace(lexer->lookahead)) {
|
||||
advance(lexer);
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
switch (lexer->lookahead) {
|
||||
case '-':
|
||||
advance(lexer);
|
||||
switch (lexer->lookahead) {
|
||||
case '-':
|
||||
case '>':
|
||||
return has_content;
|
||||
}
|
||||
break;
|
||||
default:
|
||||
advance(lexer);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
bool tree_sitter_d2_external_scanner_scan(
|
||||
void *payload,
|
||||
TSLexer *lexer,
|
||||
const bool *valid_symbols
|
||||
) {
|
||||
if (valid_symbols[IDENTIFIER]) {
|
||||
return scan_identifier(lexer);
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
@ -32,6 +32,41 @@ biz<-baz
|
|||
)
|
||||
)
|
||||
|
||||
==================
|
||||
Formatted connection
|
||||
==================
|
||||
|
||||
foo -- bar
|
||||
biz -> baz
|
||||
biz <-> baz
|
||||
biz <- baz
|
||||
|
||||
---
|
||||
|
||||
(source_file
|
||||
(connection
|
||||
(identifier)
|
||||
(arrow)
|
||||
(identifier)
|
||||
)
|
||||
(connection
|
||||
(identifier)
|
||||
(arrow)
|
||||
(identifier)
|
||||
)
|
||||
(connection
|
||||
(identifier)
|
||||
(arrow)
|
||||
(identifier)
|
||||
)
|
||||
(connection
|
||||
(identifier)
|
||||
(arrow)
|
||||
(identifier)
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
=============================
|
||||
Complex identifier connection
|
||||
=============================
|
||||
|
|
Loading…
Reference in a new issue