comparison core/src/luan/impl/BinaryOpExpr.java @ 287:4d53e9fc1bd9

change lucene search to take lucene objects git-svn-id: https://luan-java.googlecode.com/svn/trunk@288 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Thu, 04 Dec 2014 09:27:20 +0000
parents 3dcb0f9bee82
children b48cfa14ba60
comparison
equal deleted inserted replaced
286:91be4027b2a8 287:4d53e9fc1bd9
16 this.op1 = op1; 16 this.op1 = op1;
17 this.op2 = op2; 17 this.op2 = op2;
18 } 18 }
19 19
20 Object arithmetic(LuanStateImpl luan,String op,Object o1,Object o2) throws LuanException { 20 Object arithmetic(LuanStateImpl luan,String op,Object o1,Object o2) throws LuanException {
21 return luan.bit(se()).arithmetic("__mod",o1,o2); 21 return luan.bit(se()).arithmetic(op,o1,o2);
22 } 22 }
23 23
24 } 24 }