mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
merges r21093 from trunk into ruby_1_9_1.
* eval.c (rb_frame_callee, rb_frame_caller): rb_frame_callee() should return method id on current frame. add rb_frame_caller() to get method id on parent frame. Bug #884 [ruby-dev:37446] * eval.c (rb_f_method_name): use rb_frame_caller() instead of rb_frame_callee(). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_1@21123 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
0c0804cf26
commit
c7239a7e32
2 changed files with 17 additions and 1 deletions
10
ChangeLog
10
ChangeLog
|
|
@ -1,3 +1,13 @@
|
|||
Sat Dec 27 16:18:02 2008 Koichi Sasada <ko1@atdot.net>
|
||||
|
||||
* eval.c (rb_frame_callee, rb_frame_caller): rb_frame_callee()
|
||||
should return method id on current frame.
|
||||
add rb_frame_caller() to get method id on parent frame.
|
||||
Bug #884 [ruby-dev:37446]
|
||||
|
||||
* eval.c (rb_f_method_name): use rb_frame_caller()
|
||||
instead of rb_frame_callee().
|
||||
|
||||
Sat Dec 27 15:28:12 2008 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* transcode.c (make_econv_exception): show source and destination
|
||||
|
|
|
|||
8
eval.c
8
eval.c
|
|
@ -749,6 +749,12 @@ rb_frame_this_func(void)
|
|||
|
||||
ID
|
||||
rb_frame_callee(void)
|
||||
{
|
||||
return frame_func_id(GET_THREAD()->cfp);
|
||||
}
|
||||
|
||||
static ID
|
||||
rb_frame_caller(void)
|
||||
{
|
||||
rb_thread_t *th = GET_THREAD();
|
||||
rb_control_frame_t *prev_cfp = RUBY_VM_PREVIOUS_CONTROL_FRAME(th->cfp);
|
||||
|
|
@ -1106,7 +1112,7 @@ rb_f_local_variables(void)
|
|||
static VALUE
|
||||
rb_f_method_name(void)
|
||||
{
|
||||
ID fname = rb_frame_callee();
|
||||
ID fname = rb_frame_caller(); /* need *caller* ID */
|
||||
|
||||
if (fname) {
|
||||
return ID2SYM(fname);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue