aboutsummaryrefslogtreecommitdiff
path: root/syntax_tree.moon
diff options
context:
space:
mode:
Diffstat (limited to 'syntax_tree.moon')
-rw-r--r--syntax_tree.moon4
1 files changed, 2 insertions, 2 deletions
diff --git a/syntax_tree.moon b/syntax_tree.moon
index 926ea09..f3d3aee 100644
--- a/syntax_tree.moon
+++ b/syntax_tree.moon
@@ -82,8 +82,8 @@ for name in *types
__call: (t)=>
if type(t.source) == 'string'
t.source = Source\from_string(t.source)
- else
- assert(Source\is_instance(t.source))
+ --else
+ -- assert(Source\is_instance(t.source))
setmetatable(t, @)
if init = t.__init then init(t)
return t