summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2023-12-18 19:57:45 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2023-12-18 20:17:45 +0900
commit40fc9b070ca68e0bd1d57e4dd712172e2faeaa2b (patch)
tree0602932d5397387b49c133b0806d48708d070d66
parentbaf1403fba01c36b44dbd7bc658fed748ee7bc1e (diff)
[DOC] No document for internal or debug methods
-rw-r--r--array.c1
-rw-r--r--hash.c1
-rw-r--r--mini_builtin.c1
-rw-r--r--shape.c1
-rw-r--r--vm.c2
5 files changed, 6 insertions, 0 deletions
diff --git a/array.c b/array.c
index 1cbe8b22b9..e8a4aba3c7 100644
--- a/array.c
+++ b/array.c
@@ -8092,6 +8092,7 @@ rb_ary_sum(int argc, VALUE *argv, VALUE ary)
return v;
}
+/* :nodoc: */
static VALUE
rb_ary_deconstruct(VALUE ary)
{
diff --git a/hash.c b/hash.c
index 5d210a5e6e..cf83675c70 100644
--- a/hash.c
+++ b/hash.c
@@ -4684,6 +4684,7 @@ rb_hash_to_proc(VALUE hash)
return rb_func_lambda_new(hash_proc_call, hash, 1, 1);
}
+/* :nodoc: */
static VALUE
rb_hash_deconstruct_keys(VALUE hash, VALUE keys)
{
diff --git a/mini_builtin.c b/mini_builtin.c
index a0bb46c54c..457327ee06 100644
--- a/mini_builtin.c
+++ b/mini_builtin.c
@@ -78,6 +78,7 @@ each_builtin_i(st_data_t key, st_data_t val, st_data_t dmy)
return ST_CONTINUE;
}
+/* :nodoc: */
static VALUE
each_builtin(VALUE self)
{
diff --git a/shape.c b/shape.c
index c78a02a1cb..c076c1abb0 100644
--- a/shape.c
+++ b/shape.c
@@ -1131,6 +1131,7 @@ rb_shape_shapes_available(VALUE self)
return INT2NUM(MAX_SHAPE_ID - (GET_SHAPE_TREE()->next_shape_id - 1));
}
+/* :nodoc: */
static VALUE
rb_shape_exhaust(int argc, VALUE *argv, VALUE self)
{
diff --git a/vm.c b/vm.c
index f82523ad4e..1b03950340 100644
--- a/vm.c
+++ b/vm.c
@@ -3761,6 +3761,7 @@ f_sprintf(int c, const VALUE *v, VALUE _)
return rb_f_sprintf(c, v);
}
+/* :nodoc: */
static VALUE
vm_mtbl(VALUE self, VALUE obj, VALUE sym)
{
@@ -3768,6 +3769,7 @@ vm_mtbl(VALUE self, VALUE obj, VALUE sym)
return Qnil;
}
+/* :nodoc: */
static VALUE
vm_mtbl2(VALUE self, VALUE obj, VALUE sym)
{