forked from bash-lsp/bash-language-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtree-sitter.ts
80 lines (71 loc) · 1.87 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
80
import * as LSP 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): LSP.Range {
return LSP.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 isVariableInReadCommand(n: SyntaxNode): boolean {
if (
n.type === 'word' &&
n.parent?.type === 'command' &&
n.parent.firstChild?.text === 'read' &&
!n.text.startsWith('-') &&
!/^-.*[dinNptu]$/.test(n.previousSibling?.text ?? '')
) {
return true
}
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 findParentOfType(start: SyntaxNode, type: string | string[]) {
if (typeof type === 'string') {
return findParent(start, (n) => n.type === type)
}
return findParent(start, (n) => type.includes(n.type))
}