diff core/src/luan/impl/ExpList.java @ 653:538b0ae08faa

compile IfStmt and BreakStmt
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 05 Apr 2016 13:01:04 -0600
parents 859c0dedc8b6
children
line wrap: on
line diff
--- a/core/src/luan/impl/ExpList.java	Mon Apr 04 23:26:06 2016 -0600
+++ b/core/src/luan/impl/ExpList.java	Tue Apr 05 13:01:04 2016 -0600
@@ -17,7 +17,7 @@
 		}
 	};
 
-	static Expr[] toArray(List<Expressions> list) {
+	private static Expr[] toArray(List<Expressions> list) {
 		Expr[] a = new Expr[list.size()];
 		for( int i=0; i<a.length; i++ ) {
 			Expressions exprs = list.get(i);