diff core/src/luan/LuanState.java @ 502:d3183a330ff5

improve the __index metamethod to work with any type; simplify luan_proxy to eliminate base;
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 19 May 2015 17:57:20 -0600
parents 5d4a78c93383
children 92c3d22745b8
line wrap: on
line diff
--- a/core/src/luan/LuanState.java	Mon May 18 23:23:01 2015 -0600
+++ b/core/src/luan/LuanState.java	Tue May 19 17:57:20 2015 -0600
@@ -50,7 +50,7 @@
 
 	// convenience methods
 
-	private final LuanBit JAVA = bit(null);
+	final LuanBit JAVA = bit(null);
 
 	public LuanException exception(Object msg) throws LuanException {
 		return JAVA.exception(msg);