aboutsummaryrefslogtreecommitdiff
path: root/utils.lua
diff options
context:
space:
mode:
authorBruce Hill <bitbucket@bruce-hill.com>2017-09-18 17:09:03 -0700
committerBruce Hill <bitbucket@bruce-hill.com>2017-09-18 17:09:03 -0700
commita045b76ad27f3d04be4816209ccdb9144e200061 (patch)
tree8e89dec8ae84f78d86d11ea1197ad4f7a51ea4f5 /utils.lua
parent7087dc5151fd08e8fc64ab2b6d3248ff0f13c271 (diff)
Fixed repr to use __tostring metamethod if present.
Diffstat (limited to 'utils.lua')
-rw-r--r--utils.lua5
1 files changed, 4 insertions, 1 deletions
diff --git a/utils.lua b/utils.lua
index 548ce0d..dde056c 100644
--- a/utils.lua
+++ b/utils.lua
@@ -16,7 +16,10 @@ utils = {
end
local _exp_0 = type(x)
if 'table' == _exp_0 then
- if utils.is_list(x) then
+ local mt = getmetatable(x)
+ if mt and mt.__tostring then
+ return mt.__tostring(x)
+ elseif utils.is_list(x) then
return "{" .. tostring(table.concat((function()
local _accum_0 = { }
local _len_0 = 1