X-Git-Url: http://git.megacz.com/?p=org.ibex.classgen.git;a=blobdiff_plain;f=src%2Forg%2Fibex%2Fclassgen%2FType.java;h=7445f9c60acd53a03d5ed818be8d8e9c679c353b;hp=af3da6bf3c353af64dce129060b634ee7da2eb38;hb=069115fd4de6720de0a4a1ee37f05fec438fc325;hpb=7f720b1730277f379d055ac5bcdeb5c86ca05551 diff --git a/src/org/ibex/classgen/Type.java b/src/org/ibex/classgen/Type.java index af3da6b..7445f9c 100644 --- a/src/org/ibex/classgen/Type.java +++ b/src/org/ibex/classgen/Type.java @@ -44,6 +44,7 @@ public class Type { public boolean equals(java.lang.Object o) { return this==o; } public Type.Array makeArray() { return (Type.Array)instance("["+descriptor); } + public Type.Array makeArray(int i) { return i==0 ? (Type.Array)this : makeArray().makeArray(i-1); } public Type.Ref asRef() { throw new RuntimeException("attempted to use "+this+" as a Type.Ref, which it is not"); } public Type.Class asClass() { throw new RuntimeException("attempted to use "+this+" as a Type.Class, which it is not"); } @@ -75,6 +76,7 @@ public class Type { public Type.Array asArray() { return this; } public boolean isArray() { return true; } public int dimension() { return getDescriptor().lastIndexOf('['); } + public Type getElementType() { return Type.instance(getDescriptor().substring(0, getDescriptor().length()-1)); } } public static class Class extends Type.Ref { @@ -145,6 +147,7 @@ public class Type { public final Type type; private Field(String name, Type t) { super(name); this.type = t; } public String getDescriptor() { return name; } + public Type getType() { return type; } } public class Method extends Member { @@ -152,6 +155,22 @@ public class Type { public final Type returnType; public Type getArgType(int i) { return argTypes[i]; } public int getNumArgs() { return argTypes.length; } + public Type getReturnType() { return returnType; } + public String debugToString() { + StringBuffer sb = new StringBuffer(); + if (name.equals("")) sb.append("static "); + else { + if (name.equals("")) + sb.append(Class.this.getShortName()); + else + sb.append(returnType).append(" ").append(name); + sb.append("("); + for(int i=0; i