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
27 lines (23 loc) · 1.09 KB
/
elixir.js
File metadata and controls
27 lines (23 loc) · 1.09 KB
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
import * as C from './lib/core';
self.processes = self.processes || new C.ProcessSystem();
export const Core = C;
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 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 Enumerable } from './lib/enumerable';
export { default as Collectable } from './lib/collectable';
export { default as Inspect } from './lib/inspect';
export { default as Map } from './lib/map';
export { default as Set } from './lib/set';
export { default as MapSet } from './lib/map_set';
export { default as VirtualDOM } from './lib/virtual-dom';
export { default as View } from './lib/view';