Commit 5fd1eaec authored by yui-knk's avatar yui-knk

fix indent.

parent 6cf5618b
...@@ -5336,20 +5336,20 @@ mrb_parser_parse(parser_state *p, mrbc_context *c) ...@@ -5336,20 +5336,20 @@ mrb_parser_parse(parser_state *p, mrbc_context *c)
MRB_TRY(p->jmp) { MRB_TRY(p->jmp) {
p->cmd_start = TRUE; p->cmd_start = TRUE;
p->in_def = p->in_single = 0; p->in_def = p->in_single = 0;
p->nerr = p->nwarn = 0; p->nerr = p->nwarn = 0;
p->lex_strterm = NULL; p->lex_strterm = NULL;
parser_init_cxt(p, c); parser_init_cxt(p, c);
yyparse(p); yyparse(p);
if (!p->tree) { if (!p->tree) {
p->tree = new_nil(p); p->tree = new_nil(p);
} }
parser_update_cxt(p, c); parser_update_cxt(p, c);
if (c && c->dump_result) { if (c && c->dump_result) {
mrb_parser_dump(p->mrb, p->tree, 0); mrb_parser_dump(p->mrb, p->tree, 0);
} }
} }
MRB_CATCH(p->jmp) { MRB_CATCH(p->jmp) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment