* 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>
|
Mon Jan 7 12:38:47 2002 Tanaka Akira <akr@m17n.org>
|
||||||
|
|
||||||
* lib/time.rb (Time#xmlschema): new optional argument
|
* 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");
|
if (OBJ_FROZEN(klass)) rb_error_frozen("class/module");
|
||||||
body = NEW_METHOD(node, noex);
|
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*
|
static NODE*
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#define RUBY_VERSION "1.7.2"
|
#define RUBY_VERSION "1.7.2"
|
||||||
#define RUBY_RELEASE_DATE "2002-01-07"
|
#define RUBY_RELEASE_DATE "2002-01-08"
|
||||||
#define RUBY_VERSION_CODE 172
|
#define RUBY_VERSION_CODE 172
|
||||||
#define RUBY_RELEASE_CODE 20020107
|
#define RUBY_RELEASE_CODE 20020108
|
||||||
|
Loading…
x
Reference in New Issue
Block a user