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

merge Luan and LuanState
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 12 Feb 2019 22:33:40 -0700
parents f41919741100
children e0cf0d108a77
line wrap: on
line diff
--- a/src/luan/LuanClosure.java	Tue Feb 12 21:50:26 2019 -0700
+++ b/src/luan/LuanClosure.java	Tue Feb 12 22:33:40 2019 -0700
@@ -44,7 +44,7 @@
 		}
 	}
 
-	@Override public final Object call(LuanState luan,Object[] args) throws LuanException {
+	@Override public final Object call(Luan luan,Object[] args) throws LuanException {
 		if( luan.isLocked )
 			throw new RuntimeException("luan is locked");
 		check();
@@ -58,5 +58,5 @@
 		}	
 	}
 
-	public abstract Object doCall(LuanState luan,Object[] args) throws LuanException;
+	public abstract Object doCall(Luan luan,Object[] args) throws LuanException;
 }