package st.gravel.support.compiler.jvm; /* This file is automatically generated from typed smalltalk source. Do not edit by hand. (C) AG5.com */ import java.math.BigInteger; import st.gravel.support.jvm.NonLocalReturn; import st.gravel.support.compiler.jvm.JVMInstruction; import st.gravel.support.compiler.jvm.JVMInstruction.JVMInstruction_Factory; import st.gravel.support.compiler.jvm.JVMInstructionVisitor; import st.gravel.support.compiler.jvm.JVMStack; import st.gravel.support.compiler.jvm.JVMType; abstract public class PushConstant extends JVMInstruction implements Cloneable { public static PushConstant_Factory factory = new PushConstant_Factory(); public static class PushConstant_Factory extends JVMInstruction_Factory { public PushConstant basicNew() { throw new RuntimeException("PushConstant is an abstract class"); } } @Override public <X> X accept_(final JVMInstructionVisitor<X> _visitor) { return _visitor.visitPushConstant_(this); } public PushConstant copy() { try { PushConstant _temp1 = (PushConstant) this.clone(); _temp1.postCopy(); return _temp1; } catch (CloneNotSupportedException e) { throw new RuntimeException(e); } } @Override public JVMInstruction effectStack_(final JVMStack _aStack) { _aStack.push_(this.type()); return this; } public PushConstant_Factory factory() { return factory; } @Override public PushConstant printOn_(final StringBuilder _aStream) { final String _title; _title = this.factory().toString(); _aStream.append(st.gravel.support.jvm.CharacterExtensions.isVowel(_title.charAt(0)) ? "an " : "a "); _aStream.append(_title); _aStream.append('['); this.sourceOn_(_aStream); _aStream.append(']'); return this; } @Override public PushConstant sourceOn_(final StringBuilder _aStream) { return this; } @Override public abstract JVMType type(); @Override public PushConstant withReturnType_(final JVMType _aType) { if (st.gravel.support.jvm.ObjectExtensions.equals_(this.type(), _aType)) { return PushConstant.this; } throw new RuntimeException("niy"); } }