[#73707] [Ruby trunk Misc#12004] Code of Conduct — hanmac@...
Issue #12004 has been updated by Hans Mackowiak.
3 messages
2016/02/05
[#73730] [Ruby trunk Feature#12034] RegExp does not respect file encoding directive — nobu@...
Issue #12034 has been updated by Nobuyoshi Nakada.
3 messages
2016/02/07
[#73746] [Ruby trunk Feature#12034] RegExp does not respect file encoding directive — nobu@...
Issue #12034 has been updated by Nobuyoshi Nakada.
3 messages
2016/02/09
[#73919] [Ruby trunk Feature#11262] Make more objects behave like "Functions" — Ruby-Lang@...
Issue #11262 has been updated by J旦rg W Mittag.
3 messages
2016/02/22
[#74019] [Ruby trunk Bug#12103][Rejected] ruby process hangs while executing regular expression. — duerst@...
Issue #12103 has been updated by Martin D端rst.
3 messages
2016/02/27
[ruby-core:73652] [Ruby trunk Feature#12043]Add a method to NoMethodError that tells if private methods are callable at the time of
From:
usa@...
Date:
2016-02-02 14:17:50 UTC
List:
ruby-core #73652
Issue #12043 has been updated by Usaku NAKAMURA. Does it satisfy your use case that raising another exception when private method call with `self.` ? ```ruby begin self.a_private_method rescue NoMethodError => e e.is_a? PrivateMethodCallError #=> true end begin self.method_not_exist rescue NoMethodError => e e.is_a? PrivateMethodCallError #=> false end begin method_not_exist rescue NoMethodError => e e.is_a? PrivateMethodCallError #=> false end ``` Of course, `PrivateMethodCallError` inherits from `NoMethodError`. ---------------------------------------- Feature #12043: Add a method to NoMethodError that tells if private methods are callable at the time of https://bugs.ruby-lang.org/issues/12043#change-56843 * Author: Yuki Nishijima * Status: Open * Priority: Normal * Assignee: ---------------------------------------- I've briefly talked about this to Sasada-san, but also wanted to hear from other committers. I would like to add a method to `NoMethodError` that tells whether or not private methods are callable from the line where the exception is raised. An example would be like this: ```ruby begin raies "Error" # rescue NoMethodError => no_method_error no_method_error.private_method_callable? # => true end ``` The only use case I can think of is [the spell checker in the did_you_mean gem](https://github.com/yuki24/did_you_mean/blob/c4f0247/lib/did_you_mean/spell_checkers/method_name_checker.rb#L18) and I'm not actually sure how useful it would be for others. Please let me know what you think, I'm open to suggestions. -- https://bugs.ruby-lang.org/ Unsubscribe: <mailto:ruby-core-request@ruby-lang.org?subject=unsubscribe> <http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>