sgodbillon / BytecodeParser

A Java library to parse JVM bytecode, simulate the stack and extract as much information as possible
http://sgodbillon.github.com/BytecodeParser/
Other
41 stars 10 forks source link

No support for Java8 / invokedynamic #6

Open cbxp opened 10 years ago

cbxp commented 10 years ago

When parsing Java8 code with lambdas (that use invokedynamic opcode), NPE is thrown because invokedynamic is not listed in Opcodes.java

cbxp commented 10 years ago

This issue is a stopper to start using lambdas in Play Framework 1.3

Toparvion commented 8 years ago

The issue prevents our project from being fully migrated to Java 8. Is there any plans to fix it? Or there may be a workaround?