diff src/luan/LuanFunction.java @ 1333:25746915a241

merge Luan and LuanState
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 12 Feb 2019 22:33:40 -0700
parents 1a68fc55a80c
children e0cf0d108a77
line wrap: on
line diff
--- a/src/luan/LuanFunction.java	Tue Feb 12 21:50:26 2019 -0700
+++ b/src/luan/LuanFunction.java	Tue Feb 12 22:33:40 2019 -0700
@@ -3,11 +3,11 @@
 
 public abstract class LuanFunction {
 
-	public abstract Object call(LuanState luan,Object[] args) throws LuanException;
+	public abstract Object call(Luan luan,Object[] args) throws LuanException;
 
 	public static final Object[] NOTHING = new Object[0];
 
-	public final Object call(LuanState luan) throws LuanException {
+	public final Object call(Luan luan) throws LuanException {
 		return call(luan,NOTHING);
 	}