Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
More whitespace correction for readability
  • Loading branch information
lizmat committed Oct 2, 2015
1 parent 8a195fa commit d028dae
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions src/core/Any-iterable-methods.pm
Expand Up @@ -141,9 +141,13 @@ augment class Any {
($value := $!source.pull-one()),
nqp::eqaddr($value, IterationEnd)
?? ($result := IterationEnd)
!! ($redo = 1)),
'REDO', $redo = 1,
'LAST', nqp::stmts(($!did-iterate = 1), ($result := IterationEnd))
!! ($redo = 1)
),
'REDO', $redo = 1,
'LAST', nqp::stmts(
($!did-iterate = 1),
($result := IterationEnd)
)
)
),
:nohandler);
Expand Down Expand Up @@ -190,7 +194,10 @@ augment class Any {
?? ($result := IterationEnd)
!! ($redo = 1)),
'REDO', $redo = 1,
'LAST', nqp::stmts(($!did-iterate = 1), ($result := IterationEnd))
'LAST', nqp::stmts(
($!did-iterate = 1),
($result := IterationEnd)
)
)
),
:nohandler);
Expand Down

0 comments on commit d028dae

Please sign in to comment.