Home | History | Annotate | Download | only in compiler

Lines Matching refs:unary

222    * Bottle-neck compilation of a unary operation.
224 * @param unary The parent unary operation.
227 * @return The unary argument.
231 private Expression compileUnary(UnaryOperation unary, int opPos)
237 unary.setRight(compile(rightPos));
239 return unary;
439 * Compile a unary '-' operation.