Ruby
3.4.0dev (2024-11-05 revision 348a53415339076afc4a02fcd09f3ae36e9c4c61)
|
Data Fields | |
struct iseq_inline_constant_cache_entry * | entry |
const ID * | segments |
A null-terminated list of ids, used to represent a constant's path idNULL is used to represent the :: prefix, and 0 is used to donate the end of the list. More... | |
const ID* iseq_inline_constant_cache::segments |
A null-terminated list of ids, used to represent a constant's path idNULL is used to represent the :: prefix, and 0 is used to donate the end of the list.
For example FOO {rb_intern("FOO"), 0} FOO::BAR {rb_intern("FOO"), rb_intern("BAR"), 0} ::FOO {idNULL, rb_intern("FOO"), 0} ::FOO::BAR {idNULL, rb_intern("FOO"), rb_intern("BAR"), 0}