public LuaValue call(LuaValue f) { return new LuaThread(globals, f.checkfunction()); }
public LuaValue call(LuaValue f) { final LuaValue func = f.checkfunction(); final LuaThread thread = new LuaThread(globals, func); return new wrapper(thread); }