Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
5fd1eaec
Commit
5fd1eaec
authored
May 27, 2014
by
yui-knk
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix indent.
parent
6cf5618b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
13 deletions
+13
-13
src/parse.y
src/parse.y
+13
-13
No files found.
src/parse.y
View file @
5fd1eaec
...
@@ -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) {
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment