diff options
| author | s-ol <s-ol@users.noreply.github.com> | 2020-04-13 18:40:35 +0000 |
|---|---|---|
| committer | s-ol <s-ol@users.noreply.github.com> | 2020-04-14 08:46:54 +0000 |
| commit | 1a8debe87762072b3a63b769aa515ebf63b4c70d (patch) | |
| tree | 33b42866307d11d2c0878b23e0ec0bb8925d3fcc /core/base/init.moon | |
| parent | spec base.match __tostring (diff) | |
| download | alive-1a8debe87762072b3a63b769aa515ebf63b4c70d.tar.gz alive-1a8debe87762072b3a63b769aa515ebf63b4c70d.zip | |
move into proper Lua module (`alv`)
Diffstat (limited to 'core/base/init.moon')
| -rw-r--r-- | core/base/init.moon | 39 |
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 -} |
