summaryrefslogtreecommitdiff
path: root/shape.c
diff options
context:
space:
mode:
authorAaron Patterson <[email protected]>2022-10-12 14:37:02 -0700
committerAaron Patterson <[email protected]>2022-10-13 13:11:01 -0700
commite5058b58c22e19d559b1122d94af5af3931aa416 ()
tree6bfd4dba20d8905436ee0c8c9e1992cb10117d83 /shape.c
parent1b0c9d0e3d6dc3630072dc16c143e0d79886b7a0 (diff)
Only expose Ruby Shape API if VM_CHECK_MODE is enabled
-rw-r--r--shape.c22
1 files changed, 13 insertions, 9 deletions
@@ -306,6 +306,13 @@ rb_shape_set_shape(VALUE obj, rb_shape_t* shape)
rb_shape_set_shape_id(obj, rb_shape_id(shape));
}
VALUE rb_cShape;
/*
@@ -440,19 +447,19 @@ rb_shape_parent(VALUE self)
}
}
-VALUE
rb_shape_debug_shape(VALUE self, VALUE obj)
{
return rb_shape_t_to_rb_cShape(rb_shape_get_shape(obj));
}
-VALUE
rb_shape_root_shape(VALUE self)
{
return rb_shape_t_to_rb_cShape(rb_shape_get_root_shape());
}
-VALUE
rb_shape_frozen_root_shape(VALUE self)
{
return rb_shape_t_to_rb_cShape(rb_shape_get_frozen_root_shape());
@@ -505,12 +512,6 @@ next_shape_id(VALUE self)
return INT2NUM(GET_VM()->next_shape_id);
}
-VALUE
-rb_shape_flags_mask(void)
-{
- return SHAPE_FLAG_MASK;
-}
-
static VALUE
rb_shape_find_by_id(VALUE mod, VALUE id)
{
@@ -520,10 +521,12 @@ rb_shape_find_by_id(VALUE mod, VALUE id)
}
return rb_shape_t_to_rb_cShape(rb_shape_get_shape_by_id(shape_id));
}
void
Init_shape(void)
{
rb_cShape = rb_define_class_under(rb_cRubyVM, "Shape", rb_cObject);
rb_undef_alloc_func(rb_cShape);
@@ -548,4 +551,5 @@ Init_shape(void)
rb_define_singleton_method(rb_cShape, "of", rb_shape_debug_shape, 1);
rb_define_singleton_method(rb_cShape, "root_shape", rb_shape_root_shape, 0);
rb_define_singleton_method(rb_cShape, "frozen_root_shape", rb_shape_frozen_root_shape, 0);
}