forked from elixirscript/elixirscript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelixir.js
More file actions
23 lines (21 loc) · 1.04 KB
/
Copy pathelixir.js
File metadata and controls
23 lines (21 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import PostOffice from './lib/post_office';
import { ProcessSystem } from './lib/processes/processes';
self.post_office = self.post_office || new PostOffice();
self.system = self.system || new ProcessSystem();
export { default as Patterns } from './lib/patterns/patterns';
export { default as BitString } from './lib/bit_string';
export { default as Kernel } from './lib/kernel';
export { default as Atom } from './lib/atom';
export { default as Enum } from './lib/enum';
export { default as Integer } from './lib/integer';
export { default as JS } from './lib/js';
export { default as List } from './lib/list';
export { default as Range } from './lib/range';
export { default as Tuple } from './lib/tuple';
export { default as Agent } from './lib/agent';
export { default as Keyword } from './lib/keyword';
export { default as Base } from './lib/base';
export { default as String } from './lib/string';
export { default as Bitwise } from './lib/bitwise';
export { default as Console } from './lib/console';
export { default as Application } from './lib/application';