diff src/luan/interp/BinaryOpExpr.java @ 49:8ede219cd111

add WebShell git-svn-id: https://luan-java.googlecode.com/svn/trunk@50 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Fri, 28 Dec 2012 19:35:04 +0000
parents 64ecb7a3aad7
children 6ca02b188dba
line wrap: on
line diff
--- a/src/luan/interp/BinaryOpExpr.java	Fri Dec 28 03:29:12 2012 +0000
+++ b/src/luan/interp/BinaryOpExpr.java	Fri Dec 28 19:35:04 2012 +0000
@@ -17,8 +17,8 @@
 		this.op2 = op2;
 	}
 
-	Object arithmetic(LuanStateImpl lua,String op,Object o1,Object o2) throws LuanException {
-		return lua.arithmetic(se(),"__mod",o1,o2);
+	Object arithmetic(LuanStateImpl luan,String op,Object o1,Object o2) throws LuanException {
+		return luan.arithmetic(se(),"__mod",o1,o2);
 	}
 
 }