view core/src/luan/impl/BinaryOpExpr.java @ 356:5e34702423a0

better parser error message
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 14 Apr 2015 09:44:07 -0600
parents 4d53e9fc1bd9
children b48cfa14ba60
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(op,o1,o2);
	}

}