From 43ff3892f39188163446f1a00ee8d2aad59e0392 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 19 Nov 2018 17:28:33 -0800 Subject: [PATCH] Fixed a string indexing issue. --- compatibility/compatibility.nom | 2 +- containers.lua | 3 --- containers.moon | 1 - 3 files changed, 1 insertion(+), 5 deletions(-) diff --git a/compatibility/compatibility.nom b/compatibility/compatibility.nom index c7895e0..23ec703 100644 --- a/compatibility/compatibility.nom +++ b/compatibility/compatibility.nom @@ -24,7 +24,7 @@ externally (upgrade action %stub to %version via %upgrade_fn) means: for %action in %actions: %replacements = {} for %i in 1 to (size of %action): - if (%action.%i.type is "Var"): + if (%action.%i is "Var" syntax tree): %replacements.(%action.%i.1) = "\(\%tree as lua id)[\%i]" define mangler (make tree %t) means: diff --git a/containers.lua b/containers.lua index 69eda94..ceb92fd 100644 --- a/containers.lua +++ b/containers.lua @@ -501,9 +501,6 @@ do setmetatable(text_methods, { __index = string2 }) - setmetatable(string2, { - __index = error - }) getmetatable("").__methods = text_methods getmetatable("").__index = text_methods getmetatable("").__add = function(self, x) diff --git a/containers.moon b/containers.moon index 3804237..c713bb6 100644 --- a/containers.moon +++ b/containers.moon @@ -200,7 +200,6 @@ do character: (i)=> sub(@, i, i) setmetatable(text_methods, {__index:string2}) - setmetatable(string2, {__index:error}) getmetatable("").__methods = text_methods getmetatable("").__index = text_methods getmetatable("").__add = (x)=> tostring(@)..tostring(x)