You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 16, 2020. It is now read-only.
Blinky currently does not support nor test the instrumentation of the InvokeDynamic byte-code instruction, nor does it account for the specific changes/features that came in with Java 8 like default methods in Interfaces or Lambdas. Below is a preliminary list of things that need to to accounted for with this regard.
Invokedynamic bytecode instruction (!!!)
Default methods in Interfaces
Lambdas
Method Handles
java.util.Stream
getStream.parallel()
getStream.collect()
stream().reduce(...)
java.util.function
Note that InvokeDynamic and Java 8 support are two distinct things to cater for and support. Supporting Invokedynamic does not imply that all new relevant features in Java 8 have been supported or tested.
The text was updated successfully, but these errors were encountered:
Blinky currently does not support nor test the instrumentation of the InvokeDynamic byte-code instruction, nor does it account for the specific changes/features that came in with Java 8 like default methods in Interfaces or Lambdas. Below is a preliminary list of things that need to to accounted for with this regard.
java.util.Stream
getStream.parallel()
getStream.collect()
stream().reduce(...)
java.util.function
Note that InvokeDynamic and Java 8 support are two distinct things to cater for and support. Supporting Invokedynamic does not imply that all new relevant features in Java 8 have been supported or tested.
The text was updated successfully, but these errors were encountered: