view core/src/luan/impl/BinaryOpExpr.java @ 533:8e51d6071b67

restore LuanTable.hasJava
author Franklin Schmidt <fschmidt@gmail.com>
date Wed, 27 May 2015 23:40:09 -0600
parents b48cfa14ba60
children 4723d22062ce
line wrap: on
line source

package luan.impl;

import luan.Luan;
import luan.LuanTable;
import luan.LuanFunction;
import luan.LuanException;
import luan.LuanElement;


abstract class BinaryOpExpr extends CodeImpl implements Expr {
	final Expr op1;
	final Expr op2;

	BinaryOpExpr(LuanElement el,Expr op1,Expr op2) {
		super(el);
		this.op1 = op1;
		this.op2 = op2;
	}

	Object arithmetic(LuanStateImpl luan,String op,Object o1,Object o2) throws LuanException {
		return luan.bit(el()).arithmetic(op,o1,o2);
	}

}