comparison src/luan/LuanTable.java @ 1284:1b46c8e6c647

minor
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 23 Dec 2018 11:04:05 -0700
parents 503bde9a7c80
children f41919741100
comparison
equal deleted inserted replaced
1283:503bde9a7c80 1284:1b46c8e6c647
511 } 511 }
512 super.finalize(); 512 super.finalize();
513 } 513 }
514 514
515 public Object call(String fnName,Object... args) throws LuanException { 515 public Object call(String fnName,Object... args) throws LuanException {
516 LuanFunction fn = Luan.checkFunction(get(fnName)); 516 LuanFunction fn = (LuanFunction)get(fnName);
517 return fn.call(luan,args); 517 return fn.call(luan,args);
518 } 518 }
519 } 519 }