comparison src/luan/interp/Expressions.java @ 111:2428ecfed375

change LuanFunction.call() from returning Object[] to returning Object, to reduce garbage collection git-svn-id: https://luan-java.googlecode.com/svn/trunk@112 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Fri, 23 May 2014 20:40:05 +0000
parents 8ede219cd111
children
comparison
equal deleted inserted replaced
110:7afa6df829f3 111:2428ecfed375
2 2
3 import luan.LuanException; 3 import luan.LuanException;
4 4
5 5
6 interface Expressions extends Code { 6 interface Expressions extends Code {
7 public Object[] eval(LuanStateImpl luan) throws LuanException; 7 public Object eval(LuanStateImpl luan) throws LuanException;
8 } 8 }