diff --git a/limmutable.c b/limmutable.c index f6caeaa..1e6c302 100644 --- a/limmutable.c +++ b/limmutable.c @@ -267,11 +267,13 @@ static int Lfrom_table(lua_State *L) lua_getfield(L, -1, "__fields"); int n; if (lua_isnil(L, -1)) { + lua_pop(L, 1); lua_getfield(L, 2, "n"); if (lua_isnil(L, -1)) { - luaL_error(L, "table needs an 'n' field to track its length"); + n = lua_objlen(L, 2); + } else { + n = luaL_checkinteger(L, -1); } - n = luaL_checkinteger(L, -1); lua_pop(L, 1); if (! lua_checkstack(L, n)) { luaL_error(L, "Insufficient stack space!"); @@ -701,7 +703,7 @@ static int Lmake_class(lua_State *L) break; } default: { - luaL_error(L, "expected number, table, or nil"); + luaL_error(L, "immutable expected the fields to be either table or nil"); } } // Stack: [CLS] diff --git a/tests.lua b/tests.lua index 18f3ebb..17d0c1b 100644 --- a/tests.lua +++ b/tests.lua @@ -82,6 +82,12 @@ test("Testing from_table", function() assert(Vec:from_table({x=1}) == Vec(1, nil)) end) +test("Testing from_table for tuples", function() + local T = immutable(nil) + assert(T(1,2) == T:from_table(table.pack(1,2))) + assert(T(1,2) == T:from_table({1,2})) +end) + test("Testing equality", function() also_v = Vec(1,3) assert(v == also_v)