hotspot/src/share/vm/classfile/classFileParser.hpp
changeset 46301 57f01b1bd33c
parent 42630 ae91fbc4b59f
child 46352 4ece6d1f3f76
equal deleted inserted replaced
46300:b8c77e61e99e 46301:57f01b1bd33c
   299   void classfile_parse_error(const char* msg, const char *name, TRAPS) const;
   299   void classfile_parse_error(const char* msg, const char *name, TRAPS) const;
   300   void classfile_parse_error(const char* msg,
   300   void classfile_parse_error(const char* msg,
   301                              int index,
   301                              int index,
   302                              const char *name,
   302                              const char *name,
   303                              TRAPS) const;
   303                              TRAPS) const;
       
   304   void classfile_parse_error(const char* msg,
       
   305                              const char* name,
       
   306                              const char* signature,
       
   307                              TRAPS) const;
   304 
   308 
   305   inline void guarantee_property(bool b, const char* msg, TRAPS) const {
   309   inline void guarantee_property(bool b, const char* msg, TRAPS) const {
   306     if (!b) { classfile_parse_error(msg, CHECK); }
   310     if (!b) { classfile_parse_error(msg, CHECK); }
   307   }
   311   }
   308 
   312