Mercurial Hosting > luan
view core/src/luan/impl/BinaryOpExpr.java @ 224:05eb2837ddbf
change LuanTable.put() to not return old value
git-svn-id: https://luan-java.googlecode.com/svn/trunk@225 21e917c8-12df-6dd8-5cb6-c86387c605b9
author | fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9> |
---|---|
date | Mon, 21 Jul 2014 09:27:06 +0000 |
parents | 3dcb0f9bee82 |
children | 4d53e9fc1bd9 |
line wrap: on
line source
package luan.impl; import luan.Luan; import luan.LuanTable; import luan.LuanFunction; import luan.LuanException; import luan.LuanSource; abstract class BinaryOpExpr extends CodeImpl implements Expr { final Expr op1; final Expr op2; BinaryOpExpr(LuanSource.Element se,Expr op1,Expr op2) { super(se); this.op1 = op1; this.op2 = op2; } Object arithmetic(LuanStateImpl luan,String op,Object o1,Object o2) throws LuanException { return luan.bit(se()).arithmetic("__mod",o1,o2); } }