Does Ruby call the GC marking function on an object on its parent class?
I am writing some code in C Ruby and have defined a class A
under a class B
. Both classes are associated with C structures that use VALUE
objects that need to be marked.
I am writing some code in C Ruby and have defined a class A
under a class B
. Both classes are associated with C structures that use VALUE
objects that need to be marked.