We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
headius
Learn more about funding links in repositories.
Report abuse
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
Originally reported as http://jira.codehaus.org/browse/JRUBY-6055.
Kernel#method does not return valid symbol when Non-ASCII method call.
Reproduction: https://gist.github.com/headius/6076504
The text was updated successfully, but these errors were encountered:
Extracting out of the gist:
# -*- mode: ruby; coding: utf-8 -*- def こんにちは unless __method__ == :'こんにちは' raise "%s is not equals to %s" % [__method__, :'こんにちは'] end end こんにちは
We have several other issues related to us not properly storing the encoding of mbc symbol names (and method table is String values).
Sorry, something went wrong.
Very likely to be fixed by identifier work @enebo is doing.
Fixed by @enebo's symbol/identifier work.
No branches or pull requests
Originally reported as http://jira.codehaus.org/browse/JRUBY-6055.
Kernel#method does not return valid symbol when Non-ASCII method call.
Reproduction: https://gist.github.com/headius/6076504
The text was updated successfully, but these errors were encountered: