Renamed Compiler -> NomsuCompiler

This commit is contained in:
Bruce Hill 2017-09-13 16:22:04 -07:00
parent d27561b16a
commit 6b5fbd436b
2 changed files with 14 additions and 14 deletions

View File

@ -119,7 +119,7 @@ make_parser = function(lingo, extra_definitions)
}) })
return re.compile(lingo, defs) return re.compile(lingo, defs)
end end
local Compiler local NomsuCompiler
do do
local _class_0 local _class_0
local _base_0 = { local _base_0 = {
@ -771,7 +771,7 @@ do
return self:initialize_core() return self:initialize_core()
end, end,
__base = _base_0, __base = _base_0,
__name = "Compiler" __name = "NomsuCompiler"
}, { }, {
__index = _base_0, __index = _base_0,
__call = function(cls, ...) __call = function(cls, ...)
@ -803,10 +803,10 @@ do
return coroutine.yield(buffer) return coroutine.yield(buffer)
end) end)
end end
Compiler = _class_0 NomsuCompiler = _class_0
end end
if arg and arg[1] then if arg and arg[1] then
local c = Compiler() local c = NomsuCompiler()
local input = io.open(arg[1]):read("*a") local input = io.open(arg[1]):read("*a")
local _print = print local _print = print
local _io_write = io.write local _io_write = io.write
@ -829,11 +829,10 @@ if arg and arg[1] then
output:write(code) output:write(code)
output:write([[ output:write([[
end end
local utils = require('utils') local NomsuCompiler = require('nomsu')
local Compiler = require('nomsu') local c = NomsuCompiler()
local c = Compiler()
load()(c, {}) load()(c, {})
]]) ]])
end end
end end
return Compiler return NomsuCompiler

View File

@ -5,6 +5,8 @@ utils = require 'utils'
-- TODO: -- TODO:
-- string interpolation -- string interpolation
-- improve indentation of generated lua code
-- provide way to run precompiled nomsu -> lua code
-- comprehensions? -- comprehensions?
-- dicts? -- dicts?
-- better scoping? -- better scoping?
@ -85,7 +87,7 @@ make_parser = (lingo, extra_definitions)->
}) })
return re.compile lingo, defs return re.compile lingo, defs
class Compiler class NomsuCompiler
new:(parent)=> new:(parent)=>
@defs = setmetatable({}, {__index:parent and parent.defs}) @defs = setmetatable({}, {__index:parent and parent.defs})
@callstack = {} @callstack = {}
@ -535,7 +537,7 @@ class Compiler
-- Run on the command line via "./nomsu.moon input_file.nom" to execute -- Run on the command line via "./nomsu.moon input_file.nom" to execute
-- and "./nomsu.moon input_file.nom output_file.lua" to compile (use "-" to compile to stdout) -- and "./nomsu.moon input_file.nom output_file.lua" to compile (use "-" to compile to stdout)
if arg and arg[1] if arg and arg[1]
c = Compiler() c = NomsuCompiler()
input = io.open(arg[1])\read("*a") input = io.open(arg[1])\read("*a")
-- Kinda hacky, if run via "./nomsu.moon file.nom -", then silence print and io.write -- Kinda hacky, if run via "./nomsu.moon file.nom -", then silence print and io.write
-- during execution and re-enable them to print out the generated source code -- during execution and re-enable them to print out the generated source code
@ -560,10 +562,9 @@ if arg and arg[1]
output\write [[ output\write [[
end end
local utils = require('utils') local NomsuCompiler = require('nomsu')
local Compiler = require('nomsu') local c = NomsuCompiler()
local c = Compiler()
load()(c, {}) load()(c, {})
]] ]]
return Compiler return NomsuCompiler