-
Notifications
You must be signed in to change notification settings - Fork 132
/
Copy pathtree-sitter.ts
79 lines (71 loc) · 1.81 KB
/
tree-sitter.ts
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
import { Diagnostic, DiagnosticSeverity, Range } from 'vscode-languageserver/node'
import { SyntaxNode } from 'web-tree-sitter'
/**
* Recursively iterate over all nodes in a tree.
*
* @param node The node to start iterating from
* @param callback The callback to call for each node. Return false to stop following children.
*/
export function forEach(node: SyntaxNode, callback: (n: SyntaxNode) => void | boolean) {
const followChildren = callback(node) !== false
if (followChildren && node.children.length) {
node.children.forEach((n) => forEach(n, callback))
}
}
export function range(n: SyntaxNode): Range {
return Range.create(
n.startPosition.row,
n.startPosition.column,
n.endPosition.row,
n.endPosition.column,
)
}
export function isDefinition(n: SyntaxNode): boolean {
switch (n.type) {
case 'variable_assignment':
case 'function_definition':
return true
default:
return false
}
}
export function isReference(n: SyntaxNode): boolean {
switch (n.type) {
case 'variable_name':
case 'command_name':
return true
default:
return false
}
}
export function findParent(
start: SyntaxNode,
predicate: (n: SyntaxNode) => boolean,
): SyntaxNode | null {
let node = start.parent
while (node !== null) {
if (predicate(node)) {
return node
}
node = node.parent
}
return null
}
export function getDiagnosticsForMissingNodes(node: SyntaxNode) {
const diagnostics: Diagnostic[] = []
forEach(node, (node) => {
if (node.isMissing()) {
diagnostics.push(
Diagnostic.create(
range(node),
`Syntax error: "${node.type}" missing`,
DiagnosticSeverity.Warning,
undefined,
'bash-language-server',
),
)
}
return node.hasError()
})
return diagnostics
}