forked from psalaets/excel-formula-ast
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.d.ts
81 lines (73 loc) · 1.9 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
70
71
72
73
74
75
76
77
78
79
80
81
import * as TOKENS from 'excel-formula-tokenizer';
export type Node =
| BinaryExpressionNode
| UnaryExpressionNode
| FunctionNode
| NumberNode
| CellNode
| LogicalNode
| TextNode
| CellRangeNode
| BlankNode;
export interface BinaryExpressionNode {
type: 'binary-expression';
operator: '>' | '<' | '=' | '>=' | '<=' | '+' | '-' | '&';
left: Node;
right: Node;
}
export interface UnaryExpressionNode {
type: 'unary-expression';
operator: '+' | '-';
operand: Node;
}
export interface FunctionNode {
type: 'function';
name: string;
arguments: Node[];
}
export interface NumberNode {
type: 'number';
value: number;
}
export interface CellNode {
type: 'cell';
refType?: 'relative' | 'mixed' | 'absolute';
key: string;
}
export interface CellRangeNode {
type: 'cell-range';
left: Node;
right: Node;
}
export interface LogicalNode {
type: 'logical';
value: boolean;
}
export interface TextNode {
type: 'text';
value: string;
}
export interface BlankNode {
type: 'blank';
}
declare function buildTree(tokens: TOKENS.Token[]): Node;
export 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;
declare function stringify(node: Node): string;