Mercurial Hosting > luan
view core/src/luan/impl/IfStmt.java @ 580:1e69d9c21461
add Table.clear();
add Http.response.reset();
fix http/run;
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Tue, 21 Jul 2015 14:56:41 -0600 |
parents | 4723d22062ce |
children | 859c0dedc8b6 |
line wrap: on
line source
package luan.impl; import luan.Luan; import luan.LuanException; import luan.LuanElement; final class IfStmt extends CodeImpl implements Stmt { private final Expr cnd; final Stmt thenStmt; final Stmt elseStmt; IfStmt(LuanElement el,Expr cnd,Stmt thenStmt,Stmt elseStmt) { super(el); this.cnd = cnd; this.thenStmt = thenStmt; this.elseStmt = elseStmt; } @Override public void eval(LuanStateImpl luan) throws LuanException { if( luan.checkBoolean( cnd.eval(luan), cnd.el() ) ) { thenStmt.eval(luan); } else { elseStmt.eval(luan); } } }