diff core/src/luan/impl/ReturnStmt.java @ 663:b438a47196bc

finish compiling function blocks
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 07 Apr 2016 00:01:10 -0600
parents f1150518c467
children
line wrap: on
line diff
--- a/core/src/luan/impl/ReturnStmt.java	Wed Apr 06 21:47:45 2016 -0600
+++ b/core/src/luan/impl/ReturnStmt.java	Thu Apr 07 00:01:10 2016 -0600
@@ -14,7 +14,7 @@
 	}
 
 	@Override public void eval(LuanStateImpl luan) throws LuanException {
-		luan.returnValues = expressions.eval(luan);
+//		luan.returnValues = expressions.eval(luan);
 		if( throwReturnException )
 			throw new ReturnException();
 	}