Added chain and "with".

This commit is contained in:
Bruce Hill 2017-10-12 14:39:03 -07:00
parent 4e5445e6bc
commit 454bb76e2f
2 changed files with 22 additions and 1 deletions

View File

@ -133,10 +133,22 @@ rule [%items sorted by %key] =:
sort %copy by %key
%copy
# Metatable stuff
compile [counter] to: "setmetatable({}, {__index=function() return 0; end})"
rule [chain %dict to %fallback] =:
when (type of %fallback) == ?:
* "table":
lua expr "setmetatable(\(%dict), \(%fallback))"
* "function":
lua expr "setmetatable(\(%dict), {__index=function(self, key) return (\(%fallback))(nomsu, {['']=key, self=self}); end})"
* else:
lua expr "setmetatable(\(%dict), {__index=function(self, key) return (\(%fallback)); end})"
# TODO: maybe make a generator/coroutine?
#.. Dict comprehensions can be accomplished okay by doing:
dict ([new_key using (%'s "key"), new_value using (%'s "value")] for all (entries in %dict))
dict ([%'s "key", %'s "value"] for all (entries in %dict))
or something similar
# TODO: fix compiler bugs
pass

View File

@ -178,3 +178,12 @@ compile [when %branch-value == ? %body] to code:
%result join= "\n::finished_when::;\nend;"
%result
# With statement
compile [with %thing = %value %action] to code: ".."
|do;
| local old_value = \(%thing as lua);
| \(%thing as lua) = \(%value as lua);
| \(%action as lua statements);
| \(%thing as lua) = old_value;
|end;