-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathindex.ts
More file actions
29 lines (26 loc) · 684 Bytes
/
index.ts
File metadata and controls
29 lines (26 loc) · 684 Bytes
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
import * as frontend from 'llparse-frontend';
import { Consume } from './consume';
import { Empty } from './empty';
import { Error as ErrorNode } from './error';
import { Int } from './int';
import { Invoke } from './invoke';
import { Pause } from './pause';
import { Sequence } from './sequence';
import { Single } from './single';
import { SpanEnd } from './span-end';
import { SpanStart } from './span-start';
import { TableLookup } from './table-lookup';
export { Node } from './base';
export default {
Consume,
Empty,
Error: class Error extends ErrorNode<frontend.node.Error> {},
Int,
Invoke,
Pause,
Sequence,
Single,
SpanEnd,
SpanStart,
TableLookup,
};