X-Git-Url: http://git.megacz.com/?p=org.ibex.classgen.git;a=blobdiff_plain;f=src%2Forg%2Fibex%2Fclassgen%2FType.java;h=29301d38b5dddea89e09e6927b8b3279e555c3a1;hp=29d946a9dd91d49176ce25751de0e37f0183b94d;hb=57f8032e5579f575ef526b02957fc937f6efbb62;hpb=1416902b725307ac4e8abcff8e411ff70654971d diff --git a/src/org/ibex/classgen/Type.java b/src/org/ibex/classgen/Type.java index 29d946a..29301d3 100644 --- a/src/org/ibex/classgen/Type.java +++ b/src/org/ibex/classgen/Type.java @@ -98,6 +98,8 @@ public class Type { protected Array(Type t, int dim) { super(_initHelper(t, dim)); } public Type.Array asArray() { return this; } public boolean isArray() { return true; } + String internalForm() { throw new Error("Type.Array does not have an internalForm()"); } + String[] components() { throw new Error("Type.Array does not have components()"); } private static String _initHelper(Type t, int dim) { StringBuffer sb = new StringBuffer(t.descriptor.length() + dim); for(int i=0;i