We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
invokedynamic
This opcode, new since Java 7, is among other things what is used by lambdas in Java 8 (see this video by Mr Goetz himself) but also all "dynamically typed" languages on the JVM, for instance JRuby (see this video by @headius, the author of JRuby).
From what I understood of this opcode so far (nicknamed "indy", which I'll use from now on), and this may not be accurate, it works as such:
MethodHandle
What I believe can be done here, but I'm not sure, is to replace ProxyMatcher with indy.
ProxyMatcher
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This opcode, new since Java 7, is among other things what is used by lambdas in Java 8 (see this video by Mr Goetz himself) but also all "dynamically typed" languages on the JVM, for instance JRuby (see this video by @headius, the author of JRuby).
From what I understood of this opcode so far (nicknamed "indy", which I'll use from now on), and this may not be accurate, it works as such:
MethodHandle
;What I believe can be done here, but I'm not sure, is to replace
ProxyMatcher
with indy.The text was updated successfully, but these errors were encountered: