mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
347e748bdd
* variable.c (rb_class2name): should return real class name, not singleton class or iclass. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43367 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
14 lines
277 B
C
14 lines
277 B
C
#include <ruby/ruby.h>
|
|
|
|
static VALUE
|
|
class2name(VALUE self, VALUE klass)
|
|
{
|
|
const char *name = rb_class2name(klass);
|
|
return name ? rb_str_new_cstr(name) : Qnil;
|
|
}
|
|
|
|
void
|
|
Init_class2name(VALUE klass)
|
|
{
|
|
rb_define_singleton_method(klass, "class2name", class2name, 1);
|
|
}
|