mirror of
https://github.com/JellyApple102/tree-sitter-dfraw.git
synced 2024-11-22 14:09:20 +02:00
add punctuation to strings
This commit is contained in:
parent
38dbfcdc11
commit
fdf2097f7f
|
@ -36,7 +36,7 @@ module.exports = grammar({
|
|||
|
||||
large: $ => /[A-Z_\d]+/,
|
||||
|
||||
string: $ => /[A-Za-z ]+/,
|
||||
string: $ => /[A-Za-z \-,.']+/,
|
||||
|
||||
separator: $ => /:/,
|
||||
|
||||
|
|
|
@ -121,7 +121,7 @@
|
|||
},
|
||||
"string": {
|
||||
"type": "PATTERN",
|
||||
"value": "[A-Za-z ]+"
|
||||
"value": "[A-Za-z \\-,.']+"
|
||||
},
|
||||
"separator": {
|
||||
"type": "PATTERN",
|
||||
|
|
12
src/parser.c
12
src/parser.c
|
@ -181,7 +181,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) {
|
|||
lookahead == '\r') SKIP(1)
|
||||
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(9);
|
||||
if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(7);
|
||||
if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(11);
|
||||
if (lookahead == '\'' ||
|
||||
(',' <= lookahead && lookahead <= '.') ||
|
||||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(11);
|
||||
END_STATE();
|
||||
case 2:
|
||||
if (lookahead == '\t' ||
|
||||
|
@ -217,6 +219,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) {
|
|||
lookahead == '_') ADVANCE(8);
|
||||
if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(7);
|
||||
if (lookahead == ' ' ||
|
||||
lookahead == '\'' ||
|
||||
(',' <= lookahead && lookahead <= '.') ||
|
||||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(11);
|
||||
END_STATE();
|
||||
case 8:
|
||||
|
@ -234,11 +238,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) {
|
|||
if (lookahead == ' ') ADVANCE(10);
|
||||
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(9);
|
||||
if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(7);
|
||||
if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(11);
|
||||
if (lookahead == '\'' ||
|
||||
(',' <= lookahead && lookahead <= '.') ||
|
||||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(11);
|
||||
END_STATE();
|
||||
case 11:
|
||||
ACCEPT_TOKEN(sym_string);
|
||||
if (lookahead == ' ' ||
|
||||
lookahead == '\'' ||
|
||||
(',' <= lookahead && lookahead <= '.') ||
|
||||
('A' <= lookahead && lookahead <= 'Z') ||
|
||||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(11);
|
||||
END_STATE();
|
||||
|
|
|
@ -7,6 +7,7 @@ opening_comment
|
|||
[TEST:BODY_1PART] comment here
|
||||
[MULTIPLE:string:123:LARGE]
|
||||
[SINGLE_TEST]
|
||||
[HERE:A string, contating lot's of diffent punctuation.]
|
||||
|
||||
---
|
||||
|
||||
|
@ -30,4 +31,9 @@ opening_comment
|
|||
(large)))
|
||||
(bracket_statement
|
||||
(parameter_list
|
||||
(declaration))))
|
||||
(declaration)))
|
||||
(bracket_statement
|
||||
(parameter_list
|
||||
(declaration)
|
||||
(separator)
|
||||
(string))))
|
||||
|
|
Loading…
Reference in New Issue