aboutsummaryrefslogtreecommitdiffstats
path: root/core/base/init.moon
diff options
context:
space:
mode:
Diffstat (limited to 'core/base/init.moon')
-rw-r--r--core/base/init.moon39
1 files changed, 0 insertions, 39 deletions
diff --git a/core/base/init.moon b/core/base/init.moon
deleted file mode 100644
index 9153f79..0000000
--- a/core/base/init.moon
+++ /dev/null
@@ -1,39 +0,0 @@
-----
--- Base definitions for extensions.
---
--- This module exports the following classes and tables that extension modules
--- may need:
---
--- @module base
--- @see Op
--- @see Builtin
--- @see FnDef
--- @see Input
--- @see base.match.val
--- @see base.match.evt
--- @see ValueStream
--- @see EventStream
--- @see IOStream
--- @see Result
--- @see Error
-
-import Op from require 'core.base.op'
-import Builtin from require 'core.base.builtin'
-import FnDef from require 'core.base.fndef'
-import Input from require 'core.base.input'
-import val, evt from require 'core.base.match'
-import ValueStream, EventStream, IOStream from require 'core.stream'
-import Result from require 'core.result'
-import Error from require 'core.error'
-
-{
- :Op
- :Builtin
- :FnDef
- :Input
- :val, :evt
-
- -- redundant exports, to keep anything an extension might need in one import
- :ValueStream, :EventStream, :IOStream
- :Result, :Error
-}