Sha256: b8dff08a2df80321ca74ab0fe024be8697a97bf287cb9acd3a62d0105cdc78b0
Contents?: true
Size: 504 Bytes
Versions: 6
Compression:
Stored size: 504 Bytes
Contents
#ifndef ruby_internal_method__h_ #define ruby_internal_method__h_ #include <ruby.h> #ifdef RUBY_VM #include "method.h" #endif #include "internal/node/ruby_internal_node.h" #ifndef FALSE #define FALSE 0 #endif #ifndef TRUE #define TRUE (!FALSE) #endif struct METHOD { VALUE oclass; /* class that holds the method */ VALUE rclass; /* class of the receiver */ VALUE recv; ID id, oid; NODE *body; }; #define METHOD_OCLASS(m) m->oclass #define METHOD_RCLASS(m) m->rclass #endif
Version data entries
6 entries across 6 versions & 1 rubygems