Skip to content

Commit

Permalink
Revert "Fix precedence issue in squish"
Browse files Browse the repository at this point in the history
This reverts commit 4e50aa2.

Superstitious parens don't fix no JVM issues  :-(
  • Loading branch information
lizmat committed Oct 29, 2015
1 parent 4e50aa2 commit 8fcc28f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/Any-iterable-methods.pm
Original file line number Diff line number Diff line change
Expand Up @@ -1253,7 +1253,7 @@ augment class Any {
$!first = 0;
}
else {
until (IterationEnd =:= $value) || !with($which,$!last) {
until IterationEnd =:= $value || !with($which,$!last) {
$value := $!iter.pull-one;
$which = &!as($value);
}
Expand Down Expand Up @@ -1304,7 +1304,7 @@ augment class Any {
}
else {
$value := $!iter.pull-one
until (IterationEnd =:= $value) || !with($value,$!last);
until IterationEnd =:= $value || !with($value,$!last);
}
$!last = $value
}
Expand Down

0 comments on commit 8fcc28f

Please sign in to comment.