Exception reading module with qualified exports
<[email protected]> Thu, 21 Jul 2016 00:32:39 +0200
| Newsgroups | gmane.comp.java.objectweb.asm |
|---|---|
| Message-ID | <[email protected]> |
Hello. I receive an exception when a qualified export is declared in a module.
This is reproducible. If I take away the qualified export (the "to" and the
rest), ASM behaves just fine. Steps to reproduce:
Compile this:
module com.domain1 { }
Compile this (must include com.domain1 on the module path):
module com.domain2 {
requires com.domain1;
exports com.domain2 to com.domain1;
}
When reading module-info.class from Module 2:
java.lang.ArrayIndexOutOfBoundsException: 11
at org.objectweb.asm.ClassReader.readUTF8(Unknown Source)
at org.objectweb.asm.ClassReader.readClass(Unknown Source)
at org.objectweb.asm.ClassReader.c(Unknown Source)
at org.objectweb.asm.ClassReader.accept(Unknown Source)
at org.objectweb.asm.ClassReader.accept(Unknown Source)
--
You receive this message as a subscriber of the [email protected] mailing list.
To unsubscribe: mailto:[email protected]
For general help: mailto:[email protected]?subject=help
OW2 mailing lists service home page: http://www.ow2.org/wws