generated from tree-sitter-grammars/template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
grammar.js
82 lines (67 loc) · 1.41 KB
/
grammar.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/// <reference types="tree-sitter-cli/dsl" />
// @ts-check
module.exports = grammar({
name: "test",
externals: $ => [
$._equals_begin,
$._equals_end,
$._dashes,
],
extras: _ => [],
rules: {
file: $ => repeat(
choice($.test, $._eol)
),
test: $ => prec.right(seq(
$.header,
alias($._body, $.input),
alias($._dashes, $.separator),
optional(alias($._body, $.output)),
)),
_line: _ => /[^\r\n]+/,
_body: $ => repeat1(choice($._line, $._eol)),
header: $ => seq(
alias($._equals_begin, $.separator),
alias($._line, $.name),
$._eol,
optional($.attributes),
alias($._equals_end, $.separator),
),
attributes: $ => repeat1(
choice($.attribute, $._eol)
),
attribute: $ => choice(
":skip",
":error",
":fail-fast",
$._language,
$._platform,
),
_language: $ => seq(
":language",
"(",
field("language", alias($._lang, $.parameter)),
")"
),
_platform: $ => seq(
":platform",
"(",
field("platform", alias($._os, $.parameter)),
")"
),
_lang: _ => token(repeat1(/[\w.-]/)),
_os: _ => token(choice(
"linux",
"macos",
"ios",
"freebsd",
"dragonfly",
"netbsd",
"openbsd",
"solaris",
"android",
"windows",
)),
_eol: _ => /[\r\n]|\r\n/
}
});