diff core/src/luan/impl/UpValue.java @ 664:71f8f5075df8

compile FnDef
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 07 Apr 2016 15:11:52 -0600
parents c6bcb8859b93
children
line wrap: on
line diff
--- a/core/src/luan/impl/UpValue.java	Thu Apr 07 00:01:10 2016 -0600
+++ b/core/src/luan/impl/UpValue.java	Thu Apr 07 15:11:52 2016 -0600
@@ -5,7 +5,7 @@
 import luan.LuanException;
 
 
-final class UpValue implements DeepCloneable {
+public final class UpValue implements DeepCloneable {
 	private Object[] stack;
 	private int index;
 	private boolean isClosed = false;
@@ -56,7 +56,7 @@
 		stack = null;
 	}
 
-	static interface Getter {
+	public static interface Getter {
 		public UpValue get(LuanStateImpl luan) throws LuanException;
 	}