Fixed some bugs with generated code.
This commit is contained in:
parent
8221616cd6
commit
522a039767
@ -805,7 +805,7 @@ do
|
|||||||
end
|
end
|
||||||
Compiler = _class_0
|
Compiler = _class_0
|
||||||
end
|
end
|
||||||
if arg[1] then
|
if arg and arg[1] then
|
||||||
local c = Compiler()
|
local c = Compiler()
|
||||||
local input = io.open(arg[1]):read("*a")
|
local input = io.open(arg[1]):read("*a")
|
||||||
local _print = print
|
local _print = print
|
||||||
@ -831,7 +831,7 @@ if arg[1] then
|
|||||||
end
|
end
|
||||||
local utils = require('utils')
|
local utils = require('utils')
|
||||||
local Compiler = require('nomsu')
|
local Compiler = require('nomsu')
|
||||||
local c = Compiler(require('core'))
|
local c = Compiler()
|
||||||
load()(c, {})
|
load()(c, {})
|
||||||
]])
|
]])
|
||||||
end
|
end
|
||||||
|
@ -532,7 +532,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[1]
|
if arg and arg[1]
|
||||||
c = Compiler()
|
c = Compiler()
|
||||||
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
|
||||||
@ -560,7 +560,7 @@ if arg[1]
|
|||||||
end
|
end
|
||||||
local utils = require('utils')
|
local utils = require('utils')
|
||||||
local Compiler = require('nomsu')
|
local Compiler = require('nomsu')
|
||||||
local c = Compiler(require('core'))
|
local c = Compiler()
|
||||||
load()(c, {})
|
load()(c, {})
|
||||||
]]
|
]]
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user