Package wyvern.targets.Common.wyvernIL.IL.Imm

Examples of wyvern.targets.Common.wyvernIL.IL.Imm.Operand.accept()


  public BytecodeValue visit(BinOp binOp) {
    Operand l = binOp.getL();
    Operand r = binOp.getR();
    String op = binOp.getOp();
    BytecodeValue left = l.accept(opVisitor);
    BytecodeValue right = r.accept(opVisitor);
    return left.doInvoke(right, op);
  }

  @Override
  public BytecodeValue visit(FnInv fnInv) {
View Full Code Here


  }

  @Override
  public BytecodeValue visit(Immediate immediate) {
    Operand inner = immediate.getInner();
    return inner.accept(new BytecodeOperandVisitor(context));
  }

  @Override
  public BytecodeValue visit(New aNew) {
    BytecodeContext newContext;
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.