view src/luan/interp/RepeatStmt.java @ 19:a7c13c6017f7

add GenericForStmt git-svn-id: https://luan-java.googlecode.com/svn/trunk@20 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Sun, 02 Dec 2012 10:08:24 +0000
parents 2ddf85634d20
children d85510d92eee
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 {
		do {
			doStmt.eval(lua);
		} while( !Lua.toBoolean( cnd.eval(lua) ) );
	}
}