diff core/src/luan/impl/TableExpr.java @ 411:23b99a5039b5

remove Luan.newTable()
author Franklin Schmidt <fschmidt@gmail.com>
date Wed, 29 Apr 2015 16:05:02 -0600
parents ec016471c6eb
children dae264ad6a7b
line wrap: on
line diff
--- a/core/src/luan/impl/TableExpr.java	Wed Apr 29 15:38:15 2015 -0600
+++ b/core/src/luan/impl/TableExpr.java	Wed Apr 29 16:05:02 2015 -0600
@@ -28,7 +28,7 @@
 	}
 
 	@Override public Object eval(LuanStateImpl luan) throws LuanException {
-		LuanTable table = Luan.newTable();
+		LuanTable table = new LuanTable();
 		for( Field field : fields ) {
 			table.put( field.key.eval(luan), field.value.eval(luan) );
 		}