[ruby/rdoc] feat: add support for :category: on C functions

https://github.com/ruby/rdoc/commit/45c92005fe
This commit is contained in:
Mike Dalessio 2021-10-11 13:44:37 -04:00 коммит произвёл git
Родитель c322069a67
Коммит 7aec65add4
4 изменённых файлов: 43 добавлений и 0 удалений

Просмотреть файл

@ -26,6 +26,9 @@ class RDoc::AnyMethod < RDoc::MethodAttr
attr_accessor :c_function
# The section title of the method (if defined in a C file via +:category:+)
attr_accessor :section_title
# Parameters for this method
attr_accessor :params

Просмотреть файл

@ -163,6 +163,8 @@ class RDoc::Markup::PreProcess
if RDoc::Context === code_object then
section = code_object.add_section param
code_object.temporary_section = section
elsif RDoc::AnyMethod === code_object then
code_object.section_title = param
end
blankline # ignore category if we're not on an RDoc::Context

Просмотреть файл

@ -1030,7 +1030,12 @@ class RDoc::Parser::C < RDoc::Parser
meth_obj.record_location @top_level
if meth_obj.section_title
class_obj.temporary_section = class_obj.add_section(meth_obj.section_title)
end
class_obj.add_method meth_obj
@stats.add_method meth_obj
meth_obj.visibility = :private if 'private_method' == type
end

Просмотреть файл

@ -1600,6 +1600,39 @@ Init_IO(void) {
assert_equal "Method Comment! ", read_method.comment.text
assert_equal "rb_io_s_read", read_method.c_function
assert read_method.singleton
assert_nil read_method.section.title
end
def test_define_method_with_category
content = <<-EOF
/* :category: Awesome Methods
Method Comment!
*/
static VALUE
rb_io_s_read(argc, argv, io)
int argc;
VALUE *argv;
VALUE io;
{
}
void
Init_IO(void) {
/*
* a comment for class Foo on rb_define_class
*/
VALUE rb_cIO = rb_define_class("IO", rb_cObject);
rb_define_singleton_method(rb_cIO, "read", rb_io_s_read, -1);
}
EOF
klass = util_get_class content, 'rb_cIO'
read_method = klass.method_list.first
assert_equal "read", read_method.name
assert_equal "Method Comment!", read_method.comment.text.strip
assert_equal "rb_io_s_read", read_method.c_function
assert read_method.singleton
assert_equal "Awesome Methods", read_method.section.title
end
def test_define_method_dynamically