Example #1
0
MRB_API void
mrb_const_set(mrb_state *mrb, mrb_value mod, mrb_sym sym, mrb_value v)
{
  mod_const_check(mrb, mod);
  if (mrb_type(v) == MRB_TT_CLASS || mrb_type(v) == MRB_TT_MODULE) {
    mrb_class_name_class(mrb, mrb_class_ptr(mod), mrb_class_ptr(v), sym);
  }
  mrb_iv_set(mrb, mod, sym, v);
}
Example #2
0
void
mrb_const_remove(mrb_state *mrb, mrb_value mod, mrb_sym sym)
{
    mod_const_check(mrb, mod);
    mrb_iv_remove(mrb, mod, sym);
}
Example #3
0
void
mrb_const_set(mrb_state *mrb, mrb_value mod, mrb_sym sym, mrb_value v)
{
    mod_const_check(mrb, mod);
    mrb_iv_set(mrb, mod, sym, v);
}
Example #4
0
mrb_value
mrb_const_get(mrb_state *mrb, mrb_value mod, mrb_sym sym)
{
    mod_const_check(mrb, mod);
    return const_get(mrb, mrb_class_ptr(mod), sym);
}