From 443f8c73bb67e2fb085c5595add10b98f4696805 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Thu, 19 Oct 2017 16:34:38 -0700 Subject: [PATCH] Added default dict. --- lib/collections.nom | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/collections.nom b/lib/collections.nom index 5958bb9..9432baa 100644 --- a/lib/collections.nom +++ b/lib/collections.nom @@ -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":