summaryrefslogtreecommitdiff
path: root/test/rdoc/xref_data.rb
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-08-29 11:52:50 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-08-29 11:52:50 +0000
commit4790c08906f296eea070c06933a5c2484b30584e (patch)
tree2f1835afaf8562c9ae611c80b7361c1eaa79b897 /test/rdoc/xref_data.rb
parent26a9bf756bf66e77dd7b897f7ad97a7ffdfb3275 (diff)
Merge rdoc-6.0.0.beta1.
This version fixed strange behavior of ruby code parser. We will list all of impromovement to Changelog when 6.0.0 releasing. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59686 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rdoc/xref_data.rb')
-rw-r--r--test/rdoc/xref_data.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/rdoc/xref_data.rb b/test/rdoc/xref_data.rb
index 44d44956ac..c712ab8891 100644
--- a/test/rdoc/xref_data.rb
+++ b/test/rdoc/xref_data.rb
@@ -82,6 +82,18 @@ class C6
def prot6() end
end
+class C7
+ attr_reader :attr_reader
+ attr_reader :attr_reader_nodoc # :nodoc:
+ attr_writer :attr_writer
+ attr_writer :attr_writer_nodoc # :nodoc:
+ attr_accessor :attr_accessor
+ attr_accessor :attr_accessor_nodoc # :nodoc:
+
+ CONST = :const
+ CONST_NODOC = :const_nodoc # :nodoc:
+end
+
module M1
def m
end