From f4dd9664bf4e2a19e0aeee20117107b22bae4cd4 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Wed, 27 Mar 2019 14:40:35 -0700 Subject: [PATCH] Added support for __index --- lib/core/things.nom | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/core/things.nom b/lib/core/things.nom index e6d215a..42e4c62 100644 --- a/lib/core/things.nom +++ b/lib/core/things.nom @@ -59,7 +59,8 @@ $METAMETHOD_MAP = { .mod = "__mod", ."^" = "__pow", ."&" = "__band", ."|" = "__bor", ."~" = "__bxor" ."~" = "__bnot", ."<<" = "__bshl", .">>" = "__bshr", ."==" = "__eq" ."<" = "__lt", ."<=" = "__le", ."set 1 =" = "__newindex" - .size = "__len", .iterate = "__ipairs", ."iterate all" = "__pairs" + ."fallback for" = "__index", .size = "__len", .iterate = "__ipairs" + ."iterate all" = "__pairs" } $($ as text like a dict) = ({}'s metatable).__tostring