package railo.runtime.interpreter.ref.op; import railo.runtime.PageContext; import railo.runtime.exp.PageException; import railo.runtime.interpreter.ref.Ref; /** * Dividie operation */ public final class BigIntDiv extends Big { /** * constructor of the class * @param left * @param right */ public BigIntDiv(Ref left, Ref right) { super(left,right); } @Override public Object getValue(PageContext pc) throws PageException { return getLeft(pc).toBigInteger().divide(getRight(pc).toBigInteger()).toString(); } }