Searched refs:typeDescriptor (Results 1 – 1 of 1) sorted by relevance
130 private void checkDescriptor(String typeDescriptor) { in checkDescriptor() argument131 if (typeDescriptor.endsWith(";")) { in checkDescriptor()132 int lastBrace = typeDescriptor.lastIndexOf('['); in checkDescriptor()134 addClassWithHierachy(typeDescriptor.substring(1, typeDescriptor.length()-1)); in checkDescriptor()136 assert typeDescriptor.length() > lastBrace + 3 in checkDescriptor()137 && typeDescriptor.charAt(lastBrace + 1) == 'L'; in checkDescriptor()138 addClassWithHierachy(typeDescriptor.substring(lastBrace + 2, in checkDescriptor()139 typeDescriptor.length() - 1)); in checkDescriptor()