aboutsummaryrefslogtreecommitdiffstats
path: root/vm_method.c
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-01-19 09:34:30 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-01-19 09:34:30 +0000
commitad3c8a4ea0d63cd0461e6f5a6c8a1319c1fb529f (patch)
tree333fd193299da1079cb530e88240fc6c3a1b4586 /vm_method.c
parent4c51b5c39f776d31de3694c162fc45b50ab9d22a (diff)
downloadruby-ad3c8a4ea0d63cd0461e6f5a6c8a1319c1fb529f.tar.gz
More description about the protected attribute of a method
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57375 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_method.c')
-rw-r--r--vm_method.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/vm_method.c b/vm_method.c
index f4ff7989f2..57b805406c 100644
--- a/vm_method.c
+++ b/vm_method.c
@@ -1669,6 +1669,15 @@ rb_mod_public(int argc, VALUE *argv, VALUE module)
* defined methods to protected. With arguments, sets the named methods
* to have protected visibility.
* String arguments are converted to symbols.
+ *
+ * If a method has protected visibility, it is callable only where
+ * <code>self</code> of the context is the same as the method.
+ * (method definition or instance_eval). This behavior is different from
+ * Java's protected method. Usually <code>private</code> should be used.
+ *
+ * Note that a protected method is slow because it can't use inline cache.
+ *
+ * To show a private method on RDoc, use <code>:doc:</code> instead of this.
*/
static VALUE
@@ -1696,6 +1705,8 @@ rb_mod_protected(int argc, VALUE *argv, VALUE module)
* private :a
* end
* Mod.private_instance_methods #=> [:a, :c]
+ *
+ * Note that to show a private method on RDoc, use <code>:doc:</code>.
*/
static VALUE