aboutsummaryrefslogtreecommitdiff
path: root/syntax_tree.moon
diff options
context:
space:
mode:
Diffstat (limited to 'syntax_tree.moon')
-rw-r--r--syntax_tree.moon2
1 files changed, 1 insertions, 1 deletions
diff --git a/syntax_tree.moon b/syntax_tree.moon
index ba854e1..b59f1ef 100644
--- a/syntax_tree.moon
+++ b/syntax_tree.moon
@@ -2,6 +2,7 @@
-- as well as the logic for converting them to Lua code.
{:insert, :remove, :concat} = table
{:Source} = require "code_obj"
+Files = require 'files'
unpack or= table.unpack
as_lua = =>
@@ -39,7 +40,6 @@ class SyntaxTree
@source_code_for_tree: setmetatable({}, {
__index:(t)=>
s = t.source
- Files = require 'files'
f = Files.read(s.filename)
return f
__mode: "k"