package st.gravel.support.compiler.ast; /* 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.ast.VariableScopeAnalyzerState; import st.gravel.support.compiler.ast.VariableScopeAnalyzerState.VariableScopeAnalyzerState_Factory; public class VariableScopeAnalyzerStateUndecided extends VariableScopeAnalyzerState implements Cloneable { public static VariableScopeAnalyzerStateUndecided_Factory factory = new VariableScopeAnalyzerStateUndecided_Factory(); public static class VariableScopeAnalyzerStateUndecided_Factory extends VariableScopeAnalyzerState_Factory { public VariableScopeAnalyzerStateUndecided basicNew() { VariableScopeAnalyzerStateUndecided newInstance = new VariableScopeAnalyzerStateUndecided(); newInstance.initialize(); return newInstance; } } public VariableScopeAnalyzerStateUndecided copy() { try { VariableScopeAnalyzerStateUndecided _temp1 = (VariableScopeAnalyzerStateUndecided) this.clone(); _temp1.postCopy(); return _temp1; } catch (CloneNotSupportedException e) { throw new RuntimeException(e); } } public VariableScopeAnalyzerStateUndecided_Factory factory() { return factory; } @Override public boolean isUndecided() { return true; } @Override public VariableScopeAnalyzerState withBlockWrite() { return this; } }