[Groonga-commit] groonga/groonga at 5a4cb14 [master] Simplify

アーカイブの一覧に戻る

Kouhei Sutou null+****@clear*****
Sun Aug 27 23:19:48 JST 2017


Kouhei Sutou	2017-08-27 23:19:48 +0900 (Sun, 27 Aug 2017)

  New Revision: 5a4cb142865b23f50a9ad0fa2e2f5a68990f7551
  https://github.com/groonga/groonga/commit/5a4cb142865b23f50a9ad0fa2e2f5a68990f7551

  Message:
    Simplify

  Modified files:
    lib/mrb/mrb_eval_context.c

  Modified: lib/mrb/mrb_eval_context.c (+11 -5)
===================================================================
--- lib/mrb/mrb_eval_context.c    2017-08-27 23:08:24 +0900 (146237f28)
+++ lib/mrb/mrb_eval_context.c    2017-08-27 23:19:48 +0900 (e3a47a82e)
@@ -52,14 +52,20 @@ eval_context_compile(mrb_state *mrb, mrb_value self)
               "[mruby][eval][compile] failed to allocate parser");
   }
   if (parser->nerr > 0) {
-    mrb_value errormessage = mrb_format(mrb, "line %S:%S: %S",
-      mrb_fixnum_value(parser->error_buffer[0].lineno),
-      mrb_fixnum_value(parser->error_buffer[0].column),
-      mrb_str_new_cstr(mrb, parser->error_buffer[0].message));
+    struct mrb_parser_message *error = &(parser->error_buffer[0]);
+    mrb_value new_args[1];
+    mrb_value exception;
+
+    new_args[0] = mrb_format(mrb,
+                             "line %S:%S: %S",
+                             mrb_fixnum_value(error->lineno),
+                             mrb_fixnum_value(error->column),
+                             mrb_str_new_cstr(mrb, error->message));
+    exception = mrb_obj_new(mrb, E_SYNTAX_ERROR, 1, new_args);
     mrb_parser_free(parser);
     mrbc_context_free(mrb, ctx);
 
-    mrb_raisef(mrb, E_SYNTAX_ERROR, "%S", errormessage);
+    mrb_exc_raise(mrb, exception);
   }
 
   proc = mrb_generate_code(mrb, parser);
-------------- next part --------------
HTML����������������������������...
ダウンロード 



More information about the Groonga-commit mailing list
アーカイブの一覧に戻る