view src/luan/interp/RepeatStmt.java @ 21:c93d8c781853

add functions git-svn-id: https://luan-java.googlecode.com/svn/trunk@22 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Tue, 04 Dec 2012 09:16:03 +0000
parents d85510d92eee
children 5cf15507d77e
line wrap: on
line source

package luan.interp;

import luan.Lua;
import luan.LuaState;
import luan.LuaException;


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

	RepeatStmt(Stmt doStmt,Expr cnd) {
		this.doStmt = doStmt;
		this.cnd = cnd;
	}

	@Override public void eval(LuaState lua) throws LuaException {
		try {
			do {
				doStmt.eval(lua);
			} while( !Lua.toBoolean( cnd.eval(lua) ) );
		} catch(BreakException e) {}
	}
}