diff src/luan/interp/LuaClosure.java @ 40:e3624b7cd603

implement stack trace git-svn-id: https://luan-java.googlecode.com/svn/trunk@41 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Fri, 21 Dec 2012 10:45:54 +0000
parents c3eab5a3ce3c
children
line wrap: on
line diff
--- a/src/luan/interp/LuaClosure.java	Thu Dec 20 02:54:06 2012 +0000
+++ b/src/luan/interp/LuaClosure.java	Fri Dec 21 10:45:54 2012 +0000
@@ -2,6 +2,7 @@
 
 import luan.LuaFunction;
 import luan.LuaState;
+import luan.LuaElement;
 import luan.LuaException;
 
 
@@ -23,7 +24,7 @@
 		}
 	}
 
-	public Object[] call(LuaState lua,Object... args) throws LuaException {
+	public Object[] call(LuaState lua,Object[] args) throws LuaException {
 		return call(this,(LuaStateImpl)lua,args);
 	}