* eval.c (rb_add_method): clear replaced method from the cache.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1974 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
dcbb422253
commit
1a101d775a
@ -1,3 +1,7 @@
|
||||
Tue Jan 8 15:54:02 2002 Nobuyoshi Nakada <nobu.nakada@nifty.ne.jp>
|
||||
|
||||
* eval.c (rb_add_method): clear replaced method from the cache.
|
||||
|
||||
Mon Jan 7 12:38:47 2002 Tanaka Akira <akr@m17n.org>
|
||||
|
||||
* lib/time.rb (Time#xmlschema): new optional argument
|
||||
|
3
eval.c
3
eval.c
@ -229,7 +229,8 @@ rb_add_method(klass, mid, node, noex)
|
||||
}
|
||||
if (OBJ_FROZEN(klass)) rb_error_frozen("class/module");
|
||||
body = NEW_METHOD(node, noex);
|
||||
st_insert(RCLASS(klass)->m_tbl, mid, body);
|
||||
if (st_insert(RCLASS(klass)->m_tbl, mid, body))
|
||||
rb_clear_cache_by_id(mid);
|
||||
}
|
||||
|
||||
static NODE*
|
||||
|
Loading…
x
Reference in New Issue
Block a user