view core/src/luan/impl/RepeatStmt.java @ 338:f05c631ebaaf

README.md edited online with Bitbucket
author Hugo Teixeira <hugo.tech@gmail.com>
date Wed, 25 Mar 2015 04:29:32 +0000
parents 3dcb0f9bee82
children b48cfa14ba60
line wrap: on
line source

package luan.impl;

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) {}
	}
}