forked from tree-sitter-grammars/tree-sitter-printf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrammar.js
51 lines (42 loc) · 802 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 Tree-sitter grammar definition
* @author Peter Stuifzand
* @license ISC
*/
module.exports = grammar({
name: 'printf',
rules: {
format_string: $ => repeat(
choice($._text, $.format, '%%')
),
format: $ => seq(
'%',
optional($.flags),
optional($.width),
optional($.precision),
optional($.size),
$.type
),
// TODO: restrict?
type: _ => /[a-zA-Z]/,
flags: _ => /[-#0 +'I]/,
width: _ => /0?[0-9*]+/,
precision: _ => /\.[0-9]*/,
size: _ => token(prec(1, choice(
'hh',
'h',
'l',
'll',
'L',
'j',
'z',
't',
'I',
'I32',
'I64',
// this clashes with fmt.Errorf %w in golang
// 'w',
))),
_text: _ => prec(-1, /[^%]+/)
}
});