* method.h: fix typo of comments.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50692 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
f1d4e8b3b3
commit
3da0f60bb9
@ -1,3 +1,7 @@
|
|||||||
|
Sun May 31 04:18:06 2015 Koichi Sasada <ko1@atdot.net>
|
||||||
|
|
||||||
|
* method.h: fix typo of comments.
|
||||||
|
|
||||||
Sun May 31 03:36:42 2015 Koichi Sasada <ko1@atdot.net>
|
Sun May 31 03:36:42 2015 Koichi Sasada <ko1@atdot.net>
|
||||||
|
|
||||||
* method.h: add VM_METHOD_TYPE_ALIAS rb_method_definition_t::type
|
* method.h: add VM_METHOD_TYPE_ALIAS rb_method_definition_t::type
|
||||||
|
6
method.h
6
method.h
@ -85,13 +85,13 @@ typedef struct rb_method_definition_struct {
|
|||||||
|
|
||||||
union {
|
union {
|
||||||
struct {
|
struct {
|
||||||
rb_iseq_t *const iseq; /* should be mark */
|
rb_iseq_t *const iseq; /* should be marked */
|
||||||
rb_cref_t *cref;
|
rb_cref_t *cref;
|
||||||
} iseq_body;
|
} iseq_body;
|
||||||
rb_method_cfunc_t cfunc;
|
rb_method_cfunc_t cfunc;
|
||||||
rb_method_attr_t attr;
|
rb_method_attr_t attr;
|
||||||
rb_method_alias_t alias;
|
rb_method_alias_t alias;
|
||||||
const VALUE proc; /* should be mark */
|
const VALUE proc; /* should be marked */
|
||||||
enum method_optimized_type {
|
enum method_optimized_type {
|
||||||
OPTIMIZED_METHOD_TYPE_SEND,
|
OPTIMIZED_METHOD_TYPE_SEND,
|
||||||
OPTIMIZED_METHOD_TYPE_CALL,
|
OPTIMIZED_METHOD_TYPE_CALL,
|
||||||
@ -107,7 +107,7 @@ typedef struct rb_method_entry_struct {
|
|||||||
char mark;
|
char mark;
|
||||||
rb_method_definition_t *def;
|
rb_method_definition_t *def;
|
||||||
ID called_id;
|
ID called_id;
|
||||||
VALUE klass; /* should be mark */
|
VALUE klass; /* should be marked */
|
||||||
} rb_method_entry_t;
|
} rb_method_entry_t;
|
||||||
|
|
||||||
struct unlinked_method_entry_list_entry {
|
struct unlinked_method_entry_list_entry {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user