diff options
author | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-02-24 07:39:37 +0000 |
---|---|---|
committer | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-02-24 07:39:37 +0000 |
commit | df3e22ce84c2b19de9833f3b642098ee5abd826a (patch) | |
tree | ac513707b2dfc108f844d6338dc5e1933d189819 /test/rdoc/xref_data.rb | |
parent | 0f081edf7e2459dc22672cfa8f27c00fea5e24ad (diff) |
Update rdoc-5.1.0
* Details of changes are following url.
https://github.com/rdoc/rdoc/blob/master/History.rdoc#510--2017-02-24
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57703 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rdoc/xref_data.rb')
-rw-r--r-- | test/rdoc/xref_data.rb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/test/rdoc/xref_data.rb b/test/rdoc/xref_data.rb index 5d3f6a9a55..44d44956ac 100644 --- a/test/rdoc/xref_data.rb +++ b/test/rdoc/xref_data.rb @@ -57,6 +57,31 @@ class C5 end end +class C6 + private def priv1() end + def pub1() end + protected def prot1() end + def pub2() end + public def pub3() end + def pub4() end + + private + private def priv2() end + def priv3() end + protected def prot2() end + def priv4() end + public def pub5() end + def priv5() end + + protected + private def priv6() end + def prot3() end + protected def prot4() end + def prot5() end + public def pub6() end + def prot6() end +end + module M1 def m end |