Cleaning up codegen and TODO

This commit is contained in:
Bruce Hill 2018-04-26 14:04:51 -07:00
parent 7f99c70d56
commit 6fecb5d395
2 changed files with 3 additions and 6 deletions

View File

@ -97,8 +97,7 @@ immediately
local template = nomsu:parse(Nomsu(]]..repr(tree.source)..[[, ]]..template..[[)); local template = nomsu:parse(Nomsu(]]..repr(tree.source)..[[, ]]..template..[[));
local replacement = nomsu:tree_with_replaced_vars(template, ]]..replacements..[[); local replacement = nomsu:tree_with_replaced_vars(template, ]]..replacements..[[);
return replacement:as_lua(nomsu); return replacement:as_lua(nomsu);
end); end);]]);
]]);
return lua; return lua;
action [remove action %stub] action [remove action %stub]

View File

@ -30,16 +30,14 @@ debug_getinfo = debug.getinfo
-- 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
-- improve indentation of generated lua code
-- better error reporting
-- type checking? -- type checking?
-- Add compiler options for optimization level (compile-fast vs. run-fast, etc.) -- Add compiler options for optimization level (compile-fast vs. run-fast, etc.)
-- Do a pass on all actions to enforce parameters-are-nouns heuristic -- Do a pass on all actions to enforce parameters-are-nouns heuristic
-- Maybe do some sort of lazy definitions of actions that defer until they're used in code -- Maybe do some sort of lazy definitions of actions that defer until they're used in code
-- Add a ((%x foo %y) where {x:"asdf", y:"fdsa"}) compile-time action for substitution -- Add a ((%x foo %y) where {x:"asdf", y:"fdsa"}) compile-time action for substitution
-- Allow plain text backslash like: "\n" in longstrings without requiring "\\n" -- Allow plain text backslash like: "\n" in indented text without requiring "\\n"
-- Maybe support some kind of regex action definitions like "foo %first (and %next)*"? -- Maybe support some kind of regex action definitions like "foo %first (and %next)*"?
-- Re-implement nomsu-to-lua comment translation -- Re-implement nomsu-to-lua comment translation?
export FILE_CACHE export FILE_CACHE
-- FILE_CACHE is a map from filename (string) -> string of file contents -- FILE_CACHE is a map from filename (string) -> string of file contents