*** empty log message ***

git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@559 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 25 years ago
parent 0492729f9f
commit 3db43bc59a
  1. 7
      jode/jode/flow/VariableStack.java
  2. 4
      jode/jode/type/Type.java

@ -34,11 +34,14 @@ import jode.expr.Operator;
* @see FlowBlock.removePush * @see FlowBlock.removePush
*/ */
public class VariableStack { public class VariableStack {
public final static VariableStack EMPTY = public final static VariableStack EMPTY = new VariableStack();
new VariableStack(new LocalInfo[0]);
final LocalInfo[] stackMap; final LocalInfo[] stackMap;
private VariableStack() {
stackMap = new LocalInfo[0];
}
private VariableStack(LocalInfo[] stack) { private VariableStack(LocalInfo[] stack) {
stackMap = stack; stackMap = stack;
} }

@ -305,8 +305,8 @@ public class Type {
/** /**
* Create a new type with the given type code. * Create a new type with the given type code.
*/ */
protected Type(int typecode) { protected Type(int tc) {
this.typecode = typecode; typecode = tc;
} }
public Type getSubType() { public Type getSubType() {

Loading…
Cancel
Save