From aedece589291dc8be6350935f432376a9b4a212b Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 19 Mar 2016 05:46:20 +0000 Subject: SyntaxError message at iseq compile * iseq.c (rb_iseq_compile_with_option): make the parser in mild error. * load.c (rb_load_internal0): ditto. * parse.y (yycompile0): return the error message within the error to be raised. [Feature #11951] * parse.y (parser_compile_error): accumulate error messages in the error_buffer. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54189 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ruby.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'ruby.c') diff --git a/ruby.c b/ruby.c index f96202e217..d163f40dc5 100644 --- a/ruby.c +++ b/ruby.c @@ -1948,6 +1948,14 @@ rb_load_file_str(VALUE fname_v) return load_file(rb_parser_new(), fname_v, 0, cmdline_options_init(&opt)); } +void * +rb_parser_load_file(VALUE parser, VALUE fname_v) +{ + struct cmdline_options opt; + + return load_file(parser, fname_v, 0, cmdline_options_init(&opt)); +} + /* * call-seq: * Process.argv0 -> frozen_string -- cgit v1.2.3