From b8571b4285fc222f51d2edaaa6dedde8654e0faf Mon Sep 17 00:00:00 2001 From: mame Date: Sun, 9 May 2010 18:41:51 +0000 Subject: * vm_eval.c (eval_string_with_cref): propagative filename and line_no of binding. [ruby-dev:38767] [ruby-core:28307] * vm_core.h (rb_binding_t), proc.c: add filename and line_no fields to preserve them. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27716 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm_eval.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'vm_eval.c') diff --git a/vm_eval.c b/vm_eval.c index fefe6d6dfd..9806762d96 100644 --- a/vm_eval.c +++ b/vm_eval.c @@ -963,6 +963,10 @@ eval_string_with_cref(VALUE self, VALUE src, VALUE scope, NODE *cref, const char if (rb_obj_is_kind_of(scope, rb_cBinding)) { GetBindingPtr(scope, bind); envval = bind->env; + if (strcmp(file, "(eval)") == 0) { + file = RSTRING_PTR(bind->filename); + line = bind->line_no; + } } else { rb_raise(rb_eTypeError, -- cgit v1.2.3