aboutsummaryrefslogtreecommitdiffstats
path: root/core/init.moon
diff options
context:
space:
mode:
authors-ol <s-ol@users.noreply.github.com>2020-03-20 20:07:37 +0000
committers-ol <s-ol@users.noreply.github.com>2020-03-20 20:08:25 +0000
commit04eb8afc8367e51c15c507740b2c55fce2569b0d (patch)
tree01c5a53fbcd72d9a05009792126af5c54c8486ae /core/init.moon
parentdocs/index: mention license + repo (diff)
downloadalive-04eb8afc8367e51c15c507740b2c55fce2569b0d.tar.gz
alive-04eb8afc8367e51c15c507740b2c55fce2569b0d.zip
language Error tracking
Close #3
Diffstat (limited to 'core/init.moon')
-rw-r--r--core/init.moon4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/init.moon b/core/init.moon
index a5e892d..00e3cd4 100644
--- a/core/init.moon
+++ b/core/init.moon
@@ -17,6 +17,7 @@ L or= setmetatable {}, __index: => ->
import Value from require 'core.value'
import Result from require 'core.result'
import Scope from require 'core.scope'
+import Error from require 'core.error'
import Registry, SimpleRegistry from require 'core.registry'
import Tag from require 'core.tag'
@@ -35,6 +36,7 @@ globals = Scope.from_table require 'core.builtin'
-- @tfield Cell Cell
-- @tfield RootCell RootCell
-- @tfield Scope Scope
+-- @tfield Error Error
-- @tfield Registry Registry
-- @tfield Tag Tag
-- @tfield Scope globals global definitons
@@ -42,7 +44,7 @@ globals = Scope.from_table require 'core.builtin'
{
:Value, :Result
:Cell, :RootCell
- :Scope
+ :Scope, :Error
:Registry, :SimpleRegistry, :Tag