-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconst.go
78 lines (75 loc) · 1.68 KB
/
const.go
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
package sitter
const (
_malloc = "malloc"
_free = "free"
_strlen = "strlen"
_parserNew = "ts_parser_new"
_parserParseString = "ts_parser_parse_string"
_parserDelete = "ts_parser_delete"
_parserSetLanguage = "ts_parser_set_language"
_languageVersion = "ts_language_version"
_treeRootNode = "ts_tree_root_node"
_queryNew = "ts_query_new"
_queryCursorNew = "ts_query_cursor_new"
_queryCursorExec = "ts_query_cursor_exec"
_queryCursorNextMatch = "ts_query_cursor_next_match"
_queryCaptureNameForID = "ts_query_capture_name_for_id"
_nodeString = "ts_node_string"
_nodeChildCount = "ts_node_child_count"
_nodeNamedChildCount = "ts_node_named_child_count"
_nodeChild = "ts_node_child"
_nodeNamedChild = "ts_node_named_child"
_nodeType = "ts_node_type"
_nodeStartByte = "ts_node_start_byte"
_nodeEndByte = "ts_node_end_byte"
_nodeIsError = "ts_node_is_error"
)
var _functions = [23]string{
_malloc,
_free,
_strlen,
_parserNew,
_parserParseString,
_parserDelete,
_parserSetLanguage,
_languageVersion,
_treeRootNode,
_queryNew,
_queryCursorNew,
_queryCursorExec,
_queryCursorNextMatch,
_queryCaptureNameForID,
_nodeString,
_nodeChildCount,
_nodeNamedChildCount,
_nodeChild,
_nodeNamedChild,
_nodeType,
_nodeEndByte,
_nodeStartByte,
_nodeIsError,
}
var _languages = []string{
"bash",
"c",
"cpp",
"c_sharp",
"css",
"cue",
"dockerfile",
"elixir",
"elm",
"go",
"groovy",
"hcl",
"html",
"java",
"javascript",
"kotlin",
"lua",
"python",
"ruby",
"rust",
"sql",
"php",
}