diff src/luan/interp/WhileStmt.java @ 151:c9100f29fae0

conditions must be type boolean git-svn-id: https://luan-java.googlecode.com/svn/trunk@152 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Mon, 16 Jun 2014 10:37:06 +0000
parents 8ede219cd111
children
line wrap: on
line diff
--- a/src/luan/interp/WhileStmt.java	Mon Jun 16 10:11:48 2014 +0000
+++ b/src/luan/interp/WhileStmt.java	Mon Jun 16 10:37:06 2014 +0000
@@ -2,20 +2,22 @@
 
 import luan.Luan;
 import luan.LuanException;
+import luan.LuanSource;
 
 
-final class WhileStmt implements Stmt {
+final class WhileStmt extends CodeImpl implements Stmt {
 	private final Expr cnd;
 	private final Stmt doStmt;
 
-	WhileStmt(Expr cnd,Stmt doStmt) {
+	WhileStmt(LuanSource.Element se,Expr cnd,Stmt doStmt) {
+		super(se);
 		this.cnd = cnd;
 		this.doStmt = doStmt;
 	}
 
 	@Override public void eval(LuanStateImpl luan) throws LuanException {
 		try {
-			while( Luan.toBoolean( cnd.eval(luan) ) ) {
+			while( luan.bit(se).checkBoolean( cnd.eval(luan) ) ) {
 				doStmt.eval(luan);
 			}
 		} catch(BreakException e) {}