diff core/src/luan/LuanState.java @ 408:1b38de2b1845

merge LuanTableImpl into LuanTable
author Franklin Schmidt <fschmidt@gmail.com>
date Wed, 29 Apr 2015 13:15:17 -0600
parents d55e873e1f0d
children abce9b0041b0
line wrap: on
line diff
--- a/core/src/luan/LuanState.java	Wed Apr 29 13:01:00 2015 -0600
+++ b/core/src/luan/LuanState.java	Wed Apr 29 13:15:17 2015 -0600
@@ -20,10 +20,10 @@
 
 	final List<StackTraceElement> stackTrace = new ArrayList<StackTraceElement>();
 
-	private LuanTableImpl registry;
+	private LuanTable registry;
 
 	protected LuanState() {
-		registry = new LuanTableImpl();
+		registry = new LuanTable();
 	}
 
 	protected LuanState(LuanState luan) {}
@@ -48,7 +48,7 @@
 	}
 
 	public final Object eval(String cmd) throws LuanException {
-		return eval(cmd,new LuanTableImpl());
+		return eval(cmd,new LuanTable());
 	}
 
 	public final Object eval(String cmd,LuanTable env) throws LuanException {