view core/src/luan/impl/BinaryOpExpr.java @ 460:b48cfa14ba60

improve stack trace
author Franklin Schmidt <fschmidt@gmail.com>
date Wed, 06 May 2015 14:32:29 -0600
parents 4d53e9fc1bd9
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);
	}

}