view src/luan/interp/IfStmt.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 IfStmt extends CodeImpl implements Stmt {
	private final Expr cnd;
	final Stmt thenStmt;
	final Stmt elseStmt;

	IfStmt(LuanSource.Element se,Expr cnd,Stmt thenStmt,Stmt elseStmt) {
		super(se);
		this.cnd = cnd;
		this.thenStmt = thenStmt;
		this.elseStmt = elseStmt;
	}

	@Override public void eval(LuanStateImpl luan) throws LuanException {
		if( luan.bit(se).checkBoolean( cnd.eval(luan) ) ) {
			thenStmt.eval(luan);
		} else {
			elseStmt.eval(luan);
		}
	}
}