diff core/src/luan/impl/WhileStmt.java @ 645:859c0dedc8b6

remove LuanSource
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 29 Mar 2016 18:09:51 -0600
parents 4723d22062ce
children 8e8c30b72e9b
line wrap: on
line diff
--- a/core/src/luan/impl/WhileStmt.java	Tue Mar 29 13:53:01 2016 -0600
+++ b/core/src/luan/impl/WhileStmt.java	Tue Mar 29 18:09:51 2016 -0600
@@ -2,22 +2,20 @@
 
 import luan.Luan;
 import luan.LuanException;
-import luan.LuanElement;
 
 
 final class WhileStmt extends CodeImpl implements Stmt {
 	private final Expr cnd;
 	private final Stmt doStmt;
 
-	WhileStmt(LuanElement el,Expr cnd,Stmt doStmt) {
-		super(el);
+	WhileStmt(Expr cnd,Stmt doStmt) {
 		this.cnd = cnd;
 		this.doStmt = doStmt;
 	}
 
 	@Override public void eval(LuanStateImpl luan) throws LuanException {
 		try {
-			while( luan.checkBoolean( cnd.eval(luan), el ) ) {
+			while( luan.checkBoolean( cnd.eval(luan) ) ) {
 				doStmt.eval(luan);
 			}
 		} catch(BreakException e) {}