Added more info to error message.
This commit is contained in:
parent
7759b778f6
commit
d888b1134a
@ -1007,7 +1007,7 @@ do
|
|||||||
break
|
break
|
||||||
end
|
end
|
||||||
local lua = self:tree_to_lua(tok)
|
local lua = self:tree_to_lua(tok)
|
||||||
assert(lua.expr, "Cannot use " .. tostring(tok.src) .. " as an argument, since it's not an expression.")
|
assert(lua.expr, "Cannot use " .. tostring(tok.src) .. " as an argument, since it's not an expression, it produces: " .. tostring(repr(lua)))
|
||||||
insert(args, lua.expr)
|
insert(args, lua.expr)
|
||||||
_continue_0 = true
|
_continue_0 = true
|
||||||
until true
|
until true
|
||||||
|
@ -677,7 +677,7 @@ class NomsuCompiler
|
|||||||
for tok in *tree.value
|
for tok in *tree.value
|
||||||
if tok.type == "Word" then continue
|
if tok.type == "Word" then continue
|
||||||
lua = @tree_to_lua(tok)
|
lua = @tree_to_lua(tok)
|
||||||
assert(lua.expr, "Cannot use #{tok.src} as an argument, since it's not an expression.")
|
assert(lua.expr, "Cannot use #{tok.src} as an argument, since it's not an expression, it produces: #{repr lua}")
|
||||||
insert args, lua.expr
|
insert args, lua.expr
|
||||||
|
|
||||||
if metadata and metadata.arg_orders
|
if metadata and metadata.arg_orders
|
||||||
|
Loading…
Reference in New Issue
Block a user