src/share/vm/classfile/verificationType.hpp

changeset 6830
54bc75c144b0
parent 6824
2373a1f4987c
parent 6631
c4bc6b5c6f25
child 6876
710a3c8b516e
child 9507
7e72702243a4
equal deleted inserted replaced
6827:1fa005fb28f5 6830:54bc75c144b0
300 VerificationType get_component(ClassVerifier* context, TRAPS) const; 300 VerificationType get_component(ClassVerifier* context, TRAPS) const;
301 301
302 int dimensions() const { 302 int dimensions() const {
303 assert(is_array(), "Must be an array"); 303 assert(is_array(), "Must be an array");
304 int index = 0; 304 int index = 0;
305 while (name()->byte_at(index++) == '['); 305 while (name()->byte_at(index) == '[') index++;
306 return index; 306 return index;
307 } 307 }
308 308
309 void print_on(outputStream* st) const; 309 void print_on(outputStream* st) const;
310 310

mercurial