-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathindex.ts
More file actions
32 lines (28 loc) · 683 Bytes
/
index.ts
File metadata and controls
32 lines (28 loc) · 683 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
30
31
32
import * as frontend from 'llparse-frontend';
import { And } from './and';
import { External } from './external';
import { IsEqual } from './is-equal';
import { Load } from './load';
import { MulAdd } from './mul-add';
import { Or } from './or';
import { Store } from './store';
import { Test } from './test';
import { Unpack } from './unpack';
import { Update } from './update';
export * from './base';
class Match extends External<frontend.code.External> {}
class Span extends External<frontend.code.Span> {}
class Value extends External<frontend.code.Value> {}
export default {
And,
IsEqual,
Load,
Match,
MulAdd,
Or,
Span,
Store,
Test,
Update,
Value,
};