diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-08-15 11:49:40 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-08-15 11:49:40 +0000 |
commit | 9f4783fb9b2e5b3ff111322b8ef78f6530bbc0c1 (patch) | |
tree | 9408c24c5129fa6075d02c69ce6c05ec04e3bf90 /error.c | |
parent | 833c8ad17b33c0ca77b163d75050e7a3cd7c8cf8 (diff) | |
download | ruby-9f4783fb9b2e5b3ff111322b8ef78f6530bbc0c1.tar.gz ruby-9f4783fb9b2e5b3ff111322b8ef78f6530bbc0c1.tar.xz ruby-9f4783fb9b2e5b3ff111322b8ef78f6530bbc0c1.zip |
* eval.c (ruby_current_node) : added to set sourceline on demand.
* eval.c (error_pos, error_print, rb_longjmp, assign): set source
file/line.
* eval.c (rb_eval): store current node instead of file/line, and
preserve it at return.
* eval.c (module_setup): ditto.
* eval.c (struct thread): store node instead of file/line.
* eval.c (rb_thread_raise): ditto.
* intern.h (ruby_current_node): added.
* intern.h (ruby_set_current_source): added.
* parse.y (stmt, arg): not fix position of assignment.
* parse.y (node_assign): ditto.
* parse.y (yycompile): clear current node.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2709 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'error.c')
-rw-r--r-- | error.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -40,6 +40,7 @@ err_snprintf(buf, len, fmt, args) { int n; + ruby_set_current_source(); if (!ruby_sourcefile) { vsnprintf(buf, len, fmt, args); return; |