mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
a8ec4b2cf2
https://bugs.ruby-lang.org/projects/ruby/wiki/DevelopersMeeting20140904Japan If you still want this, request again on Redmine. [Feature #7854] https://bugs.ruby-lang.org/issues/7854 * ext/-test-/symbol/init.c (sym_find): moved from string.c for tests. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47543 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
18 lines
393 B
C
18 lines
393 B
C
#include "ruby.h"
|
|
|
|
#define init(n) {void Init_##n(VALUE klass); Init_##n(klass);}
|
|
|
|
static VALUE
|
|
sym_find(VALUE dummy, VALUE sym)
|
|
{
|
|
return rb_check_symbol(&sym);
|
|
}
|
|
|
|
void
|
|
Init_symbol(void)
|
|
{
|
|
VALUE mBug = rb_define_module("Bug");
|
|
VALUE klass = rb_define_class_under(mBug, "Symbol", rb_cSymbol);
|
|
rb_define_singleton_method(klass, "find", sym_find, 1);
|
|
TEST_INIT_FUNCS(init);
|
|
}
|