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
d52c82d6
Commit
d52c82d6
authored
Jan 06, 2021
by
Seeker
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add heredoc_push_indented helper function
parent
e279528f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
28 deletions
+28
-28
mrbgems/mruby-compiler/core/parse.y
mrbgems/mruby-compiler/core/parse.y
+14
-14
mrbgems/mruby-compiler/core/y.tab.c
mrbgems/mruby-compiler/core/y.tab.c
+14
-14
No files found.
mrbgems/mruby-compiler/core/parse.y
View file @
d52c82d6
...
...
@@ -4694,6 +4694,18 @@ heredoc_remove_indent(parser_state *p, parser_heredoc_info *hinf)
}
}
static void
heredoc_push_indented(parser_state *p, parser_heredoc_info *hinf, node *pair, node *escaped, node *nspaces, mrb_bool empty_line)
{
hinf->indented = push(hinf->indented, cons(pair, cons(escaped, nspaces)));
while (nspaces) {
size_t tspaces = (size_t)nspaces->car;
if ((hinf->indent == ~0U || tspaces < hinf->indent) && !empty_line)
hinf->indent = tspaces;
nspaces = nspaces->cdr;
}
}
static int
parse_string(parser_state *p)
{
...
...
@@ -4759,13 +4771,7 @@ parse_string(parser_state *p)
pylval.nd = nd;
if (unindent && head) {
nspaces = push(nspaces, (node*)spaces);
hinf->indented = push(hinf->indented, cons(nd->cdr, cons(escaped, nspaces)));
while (nspaces) {
size_t tspaces = (size_t)nspaces->car;
if ((hinf->indent == ~0U || tspaces < hinf->indent) && (!empty || !line_head))
hinf->indent = tspaces;
nspaces = nspaces->cdr;
}
heredoc_push_indented(p, hinf, nd->cdr, escaped, nspaces, empty && line_head);
}
return tHD_STRING_MID;
}
...
...
@@ -4859,13 +4865,7 @@ parse_string(parser_state *p)
if (hinf) {
if (unindent && head) {
nspaces = push(nspaces, (node*)spaces);
hinf->indented = push(hinf->indented, cons(nd->cdr, cons(escaped, nspaces)));
while (nspaces) {
size_t tspaces = (size_t)nspaces->car;
if (hinf->indent == ~0U || tspaces < hinf->indent)
hinf->indent = tspaces;
nspaces = nspaces->cdr;
}
heredoc_push_indented(p, hinf, nd->cdr, escaped, nspaces, FALSE);
}
hinf->line_head = FALSE;
return tHD_STRING_PART;
...
...
mrbgems/mruby-compiler/core/y.tab.c
View file @
d52c82d6
...
...
@@ -11079,6 +11079,18 @@ heredoc_remove_indent(parser_state *p, parser_heredoc_info *hinf)
}
}
static
void
heredoc_push_indented
(
parser_state
*
p
,
parser_heredoc_info
*
hinf
,
node
*
pair
,
node
*
escaped
,
node
*
nspaces
,
mrb_bool
empty_line
)
{
hinf
->
indented
=
push
(
hinf
->
indented
,
cons
(
pair
,
cons
(
escaped
,
nspaces
)));
while
(
nspaces
)
{
size_t
tspaces
=
(
size_t
)
nspaces
->
car
;
if
((
hinf
->
indent
==
~
0U
||
tspaces
<
hinf
->
indent
)
&&
!
empty_line
)
hinf
->
indent
=
tspaces
;
nspaces
=
nspaces
->
cdr
;
}
}
static
int
parse_string
(
parser_state
*
p
)
{
...
...
@@ -11144,13 +11156,7 @@ parse_string(parser_state *p)
pylval
.
nd
=
nd
;
if
(
unindent
&&
head
)
{
nspaces
=
push
(
nspaces
,
(
node
*
)
spaces
);
hinf
->
indented
=
push
(
hinf
->
indented
,
cons
(
nd
->
cdr
,
cons
(
escaped
,
nspaces
)));
while
(
nspaces
)
{
size_t
tspaces
=
(
size_t
)
nspaces
->
car
;
if
((
hinf
->
indent
==
~
0U
||
tspaces
<
hinf
->
indent
)
&&
(
!
empty
||
!
line_head
))
hinf
->
indent
=
tspaces
;
nspaces
=
nspaces
->
cdr
;
}
heredoc_push_indented
(
p
,
hinf
,
nd
->
cdr
,
escaped
,
nspaces
,
empty
&&
line_head
);
}
return
tHD_STRING_MID
;
}
...
...
@@ -11244,13 +11250,7 @@ parse_string(parser_state *p)
if
(
hinf
)
{
if
(
unindent
&&
head
)
{
nspaces
=
push
(
nspaces
,
(
node
*
)
spaces
);
hinf
->
indented
=
push
(
hinf
->
indented
,
cons
(
nd
->
cdr
,
cons
(
escaped
,
nspaces
)));
while
(
nspaces
)
{
size_t
tspaces
=
(
size_t
)
nspaces
->
car
;
if
(
hinf
->
indent
==
~
0U
||
tspaces
<
hinf
->
indent
)
hinf
->
indent
=
tspaces
;
nspaces
=
nspaces
->
cdr
;
}
heredoc_push_indented
(
p
,
hinf
,
nd
->
cdr
,
escaped
,
nspaces
,
FALSE
);
}
hinf
->
line_head
=
FALSE
;
return
tHD_STRING_PART
;
...
...
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