Moved as_lua_id() onto 'string'
This commit is contained in:
parent
0afcb416bc
commit
624fcdcc7e
@ -291,7 +291,7 @@ do
|
|||||||
local _len_0 = 1
|
local _len_0 = 1
|
||||||
for _index_0 = 1, #to_declare do
|
for _index_0 = 1, #to_declare do
|
||||||
local v = to_declare[_index_0]
|
local v = to_declare[_index_0]
|
||||||
_accum_0[_len_0] = v:as_lua_id()
|
_accum_0[_len_0] = string.as_lua_id(v.value)
|
||||||
_len_0 = _len_0 + 1
|
_len_0 = _len_0 + 1
|
||||||
end
|
end
|
||||||
return _accum_0
|
return _accum_0
|
||||||
|
@ -170,7 +170,7 @@ class Lua extends Code
|
|||||||
gather_from self
|
gather_from self
|
||||||
if #to_declare > 0
|
if #to_declare > 0
|
||||||
@remove_free_vars to_declare
|
@remove_free_vars to_declare
|
||||||
@prepend "local #{concat [v\as_lua_id! for v in *to_declare], ", "};\n"
|
@prepend "local #{concat [string.as_lua_id(v.value) for v in *to_declare], ", "};\n"
|
||||||
return to_declare
|
return to_declare
|
||||||
|
|
||||||
__tostring: =>
|
__tostring: =>
|
||||||
|
@ -16,7 +16,7 @@ compile [as %instance %body] to
|
|||||||
end
|
end
|
||||||
|
|
||||||
compile [object %classname %class_body] to
|
compile [object %classname %class_body] to
|
||||||
%class_id <- (=lua "Var.as_lua_id({value=\(%classname as value)}):sub(2,-1)")
|
%class_id <- (=lua "string.as_lua_id(\(%classname as value)):sub(2,-1)")
|
||||||
if: %class_id is ""
|
if: %class_id is ""
|
||||||
%class_id <- "class"
|
%class_id <- "class"
|
||||||
%methods <-: Lua ""
|
%methods <-: Lua ""
|
||||||
|
15
nomsu.lua
15
nomsu.lua
@ -64,6 +64,15 @@ do
|
|||||||
Nomsu, Lua, Source = _obj_0.Nomsu, _obj_0.Lua, _obj_0.Source
|
Nomsu, Lua, Source = _obj_0.Nomsu, _obj_0.Lua, _obj_0.Source
|
||||||
end
|
end
|
||||||
local STDIN, STDOUT, STDERR = "/dev/fd/0", "/dev/fd/1", "/dev/fd/2"
|
local STDIN, STDOUT, STDERR = "/dev/fd/0", "/dev/fd/1", "/dev/fd/2"
|
||||||
|
string.as_lua_id = function(str)
|
||||||
|
return "_" .. (str:gsub("%W", function(c)
|
||||||
|
if c == "_" then
|
||||||
|
return "__"
|
||||||
|
else
|
||||||
|
return ("_%x"):format(c:byte())
|
||||||
|
end
|
||||||
|
end))
|
||||||
|
end
|
||||||
FILE_CACHE = setmetatable({ }, {
|
FILE_CACHE = setmetatable({ }, {
|
||||||
__index = function(self, filename)
|
__index = function(self, filename)
|
||||||
local file = io.open(filename)
|
local file = io.open(filename)
|
||||||
@ -288,9 +297,7 @@ do
|
|||||||
local _len_0 = 1
|
local _len_0 = 1
|
||||||
for _index_1 = 1, #stub_args do
|
for _index_1 = 1, #stub_args do
|
||||||
local a = stub_args[_index_1]
|
local a = stub_args[_index_1]
|
||||||
_accum_0[_len_0] = fn_arg_positions[Types.Var.as_lua_id({
|
_accum_0[_len_0] = fn_arg_positions[string.as_lua_id(a)]
|
||||||
value = a
|
|
||||||
})]
|
|
||||||
_len_0 = _len_0 + 1
|
_len_0 = _len_0 + 1
|
||||||
end
|
end
|
||||||
arg_orders[stub] = _accum_0
|
arg_orders[stub] = _accum_0
|
||||||
@ -767,7 +774,7 @@ do
|
|||||||
elseif "Number" == _exp_0 then
|
elseif "Number" == _exp_0 then
|
||||||
return Lua.Value(tree.source, tostring(tree.value))
|
return Lua.Value(tree.source, tostring(tree.value))
|
||||||
elseif "Var" == _exp_0 then
|
elseif "Var" == _exp_0 then
|
||||||
return Lua.Value(tree.source, tree:as_lua_id())
|
return Lua.Value(tree.source, string.as_lua_id(tree.value))
|
||||||
else
|
else
|
||||||
return error("Unknown type: " .. tostring(tree.type))
|
return error("Unknown type: " .. tostring(tree.type))
|
||||||
end
|
end
|
||||||
|
@ -52,6 +52,10 @@ debug_getinfo = debug.getinfo
|
|||||||
{:Nomsu, :Lua, :Source} = require "code_obj"
|
{:Nomsu, :Lua, :Source} = require "code_obj"
|
||||||
STDIN, STDOUT, STDERR = "/dev/fd/0", "/dev/fd/1", "/dev/fd/2"
|
STDIN, STDOUT, STDERR = "/dev/fd/0", "/dev/fd/1", "/dev/fd/2"
|
||||||
|
|
||||||
|
string.as_lua_id = (str)->
|
||||||
|
"_"..(str\gsub("%W", (c)-> if c == "_" then "__" else ("_%x")\format(c\byte!)))
|
||||||
|
|
||||||
|
|
||||||
-- TODO:
|
-- TODO:
|
||||||
-- consider non-linear codegen, rather than doing thunks for things like comprehensions
|
-- consider non-linear codegen, rather than doing thunks for things like comprehensions
|
||||||
-- type checking?
|
-- type checking?
|
||||||
@ -308,7 +312,7 @@ class NomsuCompiler
|
|||||||
stub = concat(assert(stub_pattern\match(alias)), ' ')
|
stub = concat(assert(stub_pattern\match(alias)), ' ')
|
||||||
stub_args = assert(var_pattern\match(alias))
|
stub_args = assert(var_pattern\match(alias))
|
||||||
(is_compile_action and @environment.COMPILE_ACTIONS or @environment.ACTIONS)[stub] = fn
|
(is_compile_action and @environment.COMPILE_ACTIONS or @environment.ACTIONS)[stub] = fn
|
||||||
arg_orders[stub] = [fn_arg_positions[Types.Var.as_lua_id {value:a}] for a in *stub_args]
|
arg_orders[stub] = [fn_arg_positions[string.as_lua_id a] for a in *stub_args]
|
||||||
@environment.ARG_ORDERS[fn] = arg_orders
|
@environment.ARG_ORDERS[fn] = arg_orders
|
||||||
|
|
||||||
define_compile_action: (signature, fn)=>
|
define_compile_action: (signature, fn)=>
|
||||||
@ -641,12 +645,11 @@ class NomsuCompiler
|
|||||||
Lua.Value(tree.source, tostring(tree.value))
|
Lua.Value(tree.source, tostring(tree.value))
|
||||||
|
|
||||||
when "Var"
|
when "Var"
|
||||||
Lua.Value(tree.source, tree\as_lua_id!)
|
Lua.Value(tree.source, string.as_lua_id(tree.value))
|
||||||
|
|
||||||
else
|
else
|
||||||
error("Unknown type: #{tree.type}")
|
error("Unknown type: #{tree.type}")
|
||||||
|
|
||||||
|
|
||||||
tree_to_nomsu: (tree, inline=false, can_use_colon=false)=>
|
tree_to_nomsu: (tree, inline=false, can_use_colon=false)=>
|
||||||
switch tree.type
|
switch tree.type
|
||||||
when "Action"
|
when "Action"
|
||||||
|
@ -107,17 +107,7 @@ Tree("DictEntry", 'multi')
|
|||||||
Tree("IndexChain", 'multi')
|
Tree("IndexChain", 'multi')
|
||||||
Tree("Number", 'single')
|
Tree("Number", 'single')
|
||||||
Tree("Comment", 'single')
|
Tree("Comment", 'single')
|
||||||
Tree("Var", 'single', {
|
Tree("Var", 'single')
|
||||||
as_lua_id = function(self)
|
|
||||||
return "_" .. (self.value:gsub("%W", function(c)
|
|
||||||
if c == "_" then
|
|
||||||
return "__"
|
|
||||||
else
|
|
||||||
return ("_%x"):format(c:byte())
|
|
||||||
end
|
|
||||||
end))
|
|
||||||
end
|
|
||||||
})
|
|
||||||
Tree("Action", 'multi', {
|
Tree("Action", 'multi', {
|
||||||
get_stub = function(self, include_names)
|
get_stub = function(self, include_names)
|
||||||
if include_names == nil then
|
if include_names == nil then
|
||||||
|
@ -57,10 +57,7 @@ Tree "DictEntry", 'multi'
|
|||||||
Tree "IndexChain", 'multi'
|
Tree "IndexChain", 'multi'
|
||||||
Tree "Number", 'single'
|
Tree "Number", 'single'
|
||||||
Tree "Comment", 'single'
|
Tree "Comment", 'single'
|
||||||
|
Tree "Var", 'single'
|
||||||
Tree "Var", 'single',
|
|
||||||
as_lua_id: =>
|
|
||||||
"_"..(@value\gsub("%W", (c)-> if c == "_" then "__" else ("_%x")\format(c\byte!)))
|
|
||||||
|
|
||||||
Tree "Action", 'multi',
|
Tree "Action", 'multi',
|
||||||
get_stub: (include_names=false)=>
|
get_stub: (include_names=false)=>
|
||||||
|
Loading…
Reference in New Issue
Block a user