X-Git-Url: http://git.megacz.com/?p=org.ibex.classgen.git;a=blobdiff_plain;f=src%2Forg%2Fibex%2Fclassgen%2FType.java;h=8d91aeb0f02f34a207cc1400e693723ec782031a;hp=1c9d97f26a1b89ea962fc96b4c964f4387c5ddb0;hb=61c79c5fd88e1017446c804adcafde230f4d90e8;hpb=d4d0c4d937a3c18d559e335a84aed3eb4e406723 diff --git a/src/org/ibex/classgen/Type.java b/src/org/ibex/classgen/Type.java index 1c9d97f..8d91aeb 100644 --- a/src/org/ibex/classgen/Type.java +++ b/src/org/ibex/classgen/Type.java @@ -60,21 +60,11 @@ public class Type { public int hashCode() { return descriptor.hashCode(); } public boolean equals(java.lang.Object o) { return o instanceof Type && ((Type)o).descriptor.equals(descriptor); } - /** Returns a one dimensional array type for the base type base - @param base The base type - @return A one dimensional array of the base type - */ - public static Type arrayType(Type base) { return arrayType(base, 1); } - /** Returns a dim dimensional array type for the base type base - @param base The base type - @param dim Number if dimensions - @return A one dimensional array of the base type - */ - public static Type arrayType(Type base, int dim) { return new Type.Array(base, dim); } - public String toString() { return getDescriptor(); } public Type.Object asObject() { throw new RuntimeException("attempted to use "+this+" as a Type.Object, which it is not"); } public Type.Array asArray() { throw new RuntimeException("attempted to use "+this+" as a Type.Array, which it is not"); } + public Type.Array makeArray() { return new Type.Array(this); } + public Type.Array makeArray(int dim) { return new Type.Array(this, dim); } public boolean isObject() { return false; } public boolean isArray() { return false; } @@ -94,7 +84,6 @@ public class Type { private static String _initHelper(String s) { if(!s.startsWith("L") || !s.endsWith(";")) s = "L" + s.replace('.', '/') + ";"; - if(!validDescriptorString(s)) throw new IllegalArgumentException("invalid descriptor string"); return s; } @@ -104,16 +93,13 @@ public class Type { for(int i=0;st.hasMoreTokens();i++) a[i] = st.nextToken(); return a; } - + String internalForm() { return descriptor.substring(1, descriptor.length()-1); } - - static boolean validDescriptorString(String s) { - return s.startsWith("L") && s.endsWith(";"); - } } public static class Array extends Object { private int dim; + protected Array(Type t) { super(_initHelper(t, 1)); this.dim = 1; } protected Array(Type t, int dim) { super(_initHelper(t, dim)); this.dim = dim; } public Type.Array asArray() { return this; } public boolean isArray() { return true; }