diff core/src/luan/impl/IfStmt.java @ 645:859c0dedc8b6

remove LuanSource
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 29 Mar 2016 18:09:51 -0600
parents 4723d22062ce
children 8e8c30b72e9b
line wrap: on
line diff
--- a/core/src/luan/impl/IfStmt.java	Tue Mar 29 13:53:01 2016 -0600
+++ b/core/src/luan/impl/IfStmt.java	Tue Mar 29 18:09:51 2016 -0600
@@ -2,7 +2,6 @@
 
 import luan.Luan;
 import luan.LuanException;
-import luan.LuanElement;
 
 
 final class IfStmt extends CodeImpl implements Stmt {
@@ -10,15 +9,14 @@
 	final Stmt thenStmt;
 	final Stmt elseStmt;
 
-	IfStmt(LuanElement el,Expr cnd,Stmt thenStmt,Stmt elseStmt) {
-		super(el);
+	IfStmt(Expr cnd,Stmt thenStmt,Stmt elseStmt) {
 		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() ) ) {
+		if( luan.checkBoolean( cnd.eval(luan) ) ) {
 			thenStmt.eval(luan);
 		} else {
 			elseStmt.eval(luan);