view src/luan/interp/RepeatStmt.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 source

package luan.interp;

import luan.Luan;
import luan.LuanException;
import luan.LuanSource;


final class RepeatStmt extends CodeImpl implements Stmt {
	private final Stmt doStmt;
	private final Expr cnd;

	RepeatStmt(LuanSource.Element se,Stmt doStmt,Expr cnd) {
		super(se);
		this.doStmt = doStmt;
		this.cnd = cnd;
	}

	@Override public void eval(LuanStateImpl luan) throws LuanException {
		try {
			do {
				doStmt.eval(luan);
			} while( !luan.bit(se).checkBoolean( cnd.eval(luan) ) );
		} catch(BreakException e) {}
	}
}