-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrammar.js
51 lines (44 loc) · 990 Bytes
/
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
/**
* @file Smart Hosts file
* @author Jade Lin <[email protected]>
* @license MIT
*/
/// <reference types="tree-sitter-cli/dsl" />
// @ts-check
module.exports = grammar({
name: "shosts",
extras: $ => [
$.comment,
/\s/,
],
rules: {
source_file: $ => repeat(seq($._instruction, "\n")),
_instruction: $ => choice(
$.rule,
),
rule: $ => seq(
$.action,
$.domains,
optional(seq(token.immediate(","), $.condition)),
),
action: $ => choice(
$.ip,
),
ip: () => /\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}/,
domains: $ => repeat1($.domain),
domain: () => /[a-zA-Z0-9\.\-\[\]\?\*\\]+/,
condition: $ => choice(
$.cond_ssid,
),
cond_ssid: $ => seq(
alias(/[sS][sS][iI][dD]/, "SSID"), token.immediate("="), $.double_quoted_string
),
double_quoted_string: () =>
seq(
'"',
token.immediate(/[^"\n\\\$]+/),
'"'
),
comment: () => /#.*/,
}
});