< prev index next >

src/share/vm/ci/ciArrayKlass.hpp

Print this page

        

@@ -54,9 +54,12 @@
 
   // What kind of vmObject is this?
   bool is_array_klass() const { return true; }
   bool is_java_klass() const  { return true; }
 
+  // The one-level type of the array elements.
+  virtual ciKlass* element_klass() { return NULL; }
+
   static ciArrayKlass* make(ciType* element_type);
 };
 
 #endif // SHARE_VM_CI_CIARRAYKLASS_HPP
< prev index next >