Added default dict.

This commit is contained in:
Bruce Hill 2017-10-19 16:34:38 -07:00
parent e43f60a124
commit 443f8c73bb

View File

@ -162,6 +162,12 @@ rule [%items sorted by %key] =:
# Metatable stuff
compile [counter] to: "setmetatable({}, {__index=function() return 0; end})"
compile [default dict] to: ".."
|setmetatable({}, {__index=function(self, key)
| t = {};
| self[key] = t;
| return t;
|end})"
rule [chain %dict to %fallback] =:
when (type of %fallback) == ?:
* "table":