-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.d.ts
69 lines (60 loc) · 1.7 KB
/
index.d.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
import * as TOKENS from 'excel-formula-tokenizer';
type Node = BinaryExpressionNode | UnaryExpressionNode | FunctionNode | NumberNode | CellNode | LogicalNode | TextNode | CellRangeNode;
interface BinaryExpressionNode {
type: 'binary-expression',
operator: '>' | '<' | '=' | '>=' | '<=' | '+' | '-' | '&',
left: Node,
right: Node
}
interface UnaryExpressionNode {
type: 'unary-expression',
operator: '+' | '-',
operand: Node
}
interface FunctionNode {
type: 'function',
name: string,
arguments: Node[]
}
interface NumberNode {
type: 'number',
value: number
}
interface CellNode {
type: 'cell',
refType?: 'relative' | 'mixed' | 'absolute',
key: string
}
interface CellRangeNode {
type: 'cell-range',
left: Node,
right: Node
}
interface LogicalNode {
type: 'logical',
value: boolean
}
interface TextNode {
type: 'text',
value: string
}
declare function buildTree(tokens: TOKENS.Token[]): Node;
interface Visitor {
enterCell?(node: CellNode): void;
exitCell?(node: CellNode): void;
enterCellRange?(node: CellRangeNode): void;
exitCellRange?(node: CellRangeNode): void;
enterFunction?(node: FunctionNode): void;
exitFunction?(node: FunctionNode): void;
enterNumber?(node: NumberNode): void;
exitNumber?(node: NumberNode): void;
enterText?(node: TextNode): void;
exitText?(node: TextNode): void;
enterLogical?(node: LogicalNode): void;
exitLogical?(node: LogicalNode): void;
enterBinaryExpression?(node: BinaryExpressionNode): void;
exitBinaryExpression?(node: BinaryExpressionNode): void;
enterUnaryExpression?(node: UnaryExpressionNode): void;
exitUnaryExpression?(node: UnaryExpressionNode): void;
}
declare function visit(tree: Node, visitor: Visitor): void;