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