Patched debug.getinfo to return reasonable info for nomsu functions.
This commit is contained in:
parent
618bd47765
commit
86925c5b3a
@ -1,4 +1,3 @@
|
|||||||
local log = io.open('output.log', 'w')
|
|
||||||
local lfs = require('lfs')
|
local lfs = require('lfs')
|
||||||
local re = require('re')
|
local re = require('re')
|
||||||
local lpeg = require('lpeg')
|
local lpeg = require('lpeg')
|
||||||
@ -1741,7 +1740,6 @@ if arg and debug_getinfo(2).func ~= require then
|
|||||||
for _ in file:sub(1, tonumber(start)):gmatch("\n") do
|
for _ in file:sub(1, tonumber(start)):gmatch("\n") do
|
||||||
line_no = line_no + 1
|
line_no = line_no + 1
|
||||||
end
|
end
|
||||||
log:write("short_src " .. tostring(info.short_src) .. " -> " .. tostring(filename) .. "\n")
|
|
||||||
info.short_src, info.linedefined = filename, line_no
|
info.short_src, info.linedefined = filename, line_no
|
||||||
info.currentline = line_no
|
info.currentline = line_no
|
||||||
info.source = file
|
info.source = file
|
||||||
@ -1750,7 +1748,6 @@ if arg and debug_getinfo(2).func ~= require then
|
|||||||
end
|
end
|
||||||
local name = colored.bright(colored.yellow(metadata.aliases[1]))
|
local name = colored.bright(colored.yellow(metadata.aliases[1]))
|
||||||
else
|
else
|
||||||
log:write("SHORT SRC: " .. tostring(info.short_src) .. "\n")
|
|
||||||
if info.short_src and info.short_src:match("^.*%.moon$") then
|
if info.short_src and info.short_src:match("^.*%.moon$") then
|
||||||
local line_table = moonscript_line_tables[info.short_src]
|
local line_table = moonscript_line_tables[info.short_src]
|
||||||
local file = files[info.short_src]
|
local file = files[info.short_src]
|
||||||
|
53
nomsu.moon
53
nomsu.moon
@ -20,6 +20,7 @@ immutable = require 'immutable'
|
|||||||
colors = setmetatable({}, {__index:->""})
|
colors = setmetatable({}, {__index:->""})
|
||||||
colored = setmetatable({}, {__index:(_,color)-> ((msg)-> colors[color]..(msg or '')..colors.reset)})
|
colored = setmetatable({}, {__index:(_,color)-> ((msg)-> colors[color]..(msg or '')..colors.reset)})
|
||||||
{:insert, :remove, :concat} = table
|
{:insert, :remove, :concat} = table
|
||||||
|
debug_getinfo = debug.getinfo
|
||||||
|
|
||||||
-- Use + operator for string coercive concatenation (note: "asdf" + 3 == "asdf3")
|
-- Use + operator for string coercive concatenation (note: "asdf" + 3 == "asdf3")
|
||||||
-- Use [] for accessing string characters, or s[{3,4}] for s:sub(3,4)
|
-- Use [] for accessing string characters, or s[{3,4}] for s:sub(3,4)
|
||||||
@ -203,7 +204,7 @@ class NomsuCompiler
|
|||||||
stubs = @get_stubs_from_signature signature
|
stubs = @get_stubs_from_signature signature
|
||||||
stub_args = @get_args_from_signature signature
|
stub_args = @get_args_from_signature signature
|
||||||
|
|
||||||
fn_info = debug.getinfo(fn, "u")
|
fn_info = debug_getinfo(fn, "u")
|
||||||
local fn_arg_positions, arg_orders
|
local fn_arg_positions, arg_orders
|
||||||
unless fn_info.isvararg
|
unless fn_info.isvararg
|
||||||
fn_arg_positions = {debug.getlocal(fn, i), i for i=1,fn_info.nparams}
|
fn_arg_positions = {debug.getlocal(fn, i), i for i=1,fn_info.nparams}
|
||||||
@ -1005,7 +1006,7 @@ class NomsuCompiler
|
|||||||
|
|
||||||
initialize_core: =>
|
initialize_core: =>
|
||||||
-- Sets up some core functionality
|
-- Sets up some core functionality
|
||||||
get_line_no = -> "nomsu.moon:#{debug.getinfo(2).currentline}"
|
get_line_no = -> "nomsu.moon:#{debug_getinfo(2).currentline}"
|
||||||
nomsu = self
|
nomsu = self
|
||||||
nomsu_string_as_lua = (code)->
|
nomsu_string_as_lua = (code)->
|
||||||
concat_parts = {}
|
concat_parts = {}
|
||||||
@ -1057,7 +1058,7 @@ class NomsuCompiler
|
|||||||
return expr:"nomsu:use_file(#{repr filename})"
|
return expr:"nomsu:use_file(#{repr filename})"
|
||||||
|
|
||||||
-- Only run this code if this file was run directly with command line arguments, and not require()'d:
|
-- Only run this code if this file was run directly with command line arguments, and not require()'d:
|
||||||
if arg and debug.getinfo(2).func != require
|
if arg and debug_getinfo(2).func != require
|
||||||
export colors
|
export colors
|
||||||
colors = require 'consolecolors'
|
colors = require 'consolecolors'
|
||||||
parser = re.compile([[
|
parser = re.compile([[
|
||||||
@ -1075,6 +1076,49 @@ if arg and debug.getinfo(2).func != require
|
|||||||
|
|
||||||
nomsu = NomsuCompiler()
|
nomsu = NomsuCompiler()
|
||||||
|
|
||||||
|
ok, to_lua = pcall -> require('moonscript.base').to_lua
|
||||||
|
if not ok then to_lua = nil
|
||||||
|
files = setmetatable {}, {
|
||||||
|
__index: (filename)=>
|
||||||
|
file = io.open(filename)
|
||||||
|
source = file\read("*a")
|
||||||
|
file\close!
|
||||||
|
self[filename] = source
|
||||||
|
return source
|
||||||
|
}
|
||||||
|
moonscript_line_tables = setmetatable {}, {
|
||||||
|
__index: (filename)=>
|
||||||
|
return nil unless to_lua
|
||||||
|
_, line_table = to_lua(files[filename])
|
||||||
|
self[filename] = line_table
|
||||||
|
return line_table
|
||||||
|
}
|
||||||
|
|
||||||
|
debug.getinfo = (...)->
|
||||||
|
info = debug_getinfo(...)
|
||||||
|
if not info or not info.func then return info
|
||||||
|
if metadata = nomsu.action_metadata[info.func]
|
||||||
|
info.name = metadata.aliases[1]
|
||||||
|
filename, start, stop = metadata.source\match("([^:]*):([0-9]*),([0-9]*)")
|
||||||
|
if filename
|
||||||
|
file = files[filename]
|
||||||
|
line_no = 1
|
||||||
|
for _ in file\sub(1,tonumber(start))\gmatch("\n") do line_no += 1
|
||||||
|
info.short_src, info.linedefined = filename, line_no
|
||||||
|
-- TODO: Fix this to use actual current line
|
||||||
|
info.currentline = line_no
|
||||||
|
info.source = file
|
||||||
|
else
|
||||||
|
info.source = "@"..metadata.source
|
||||||
|
name = colored.bright(colored.yellow(metadata.aliases[1]))
|
||||||
|
else
|
||||||
|
if info.short_src and info.short_src\match("^.*%.moon$")
|
||||||
|
line_table = moonscript_line_tables[info.short_src]
|
||||||
|
file = files[info.short_src]
|
||||||
|
info.source = file or info.source
|
||||||
|
return info
|
||||||
|
|
||||||
|
|
||||||
run = ->
|
run = ->
|
||||||
if args.flags["-v"]
|
if args.flags["-v"]
|
||||||
nomsu.debug = true
|
nomsu.debug = true
|
||||||
@ -1143,7 +1187,8 @@ if arg and debug.getinfo(2).func != require
|
|||||||
|
|
||||||
level = 2
|
level = 2
|
||||||
while true
|
while true
|
||||||
calling_fn = debug.getinfo(level)
|
-- TODO: reduce duplicate code
|
||||||
|
calling_fn = debug_getinfo(level)
|
||||||
if not calling_fn then break
|
if not calling_fn then break
|
||||||
if calling_fn.func == run then break
|
if calling_fn.func == run then break
|
||||||
level += 1
|
level += 1
|
||||||
|
Loading…
Reference in New Issue
Block a user