Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Two small bugfixes, Parcel is still not quite working
  • Loading branch information
sorear committed Jul 20, 2010
1 parent bd00700 commit bfb226a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setting
Expand Up @@ -434,8 +434,9 @@ my class Parcel {
method iterator() {
my $ll = $!ll;
my $it = Iterator.RAWCREATE("valid", 1, "value", EMPTY, "next", Any);
my $ix = $ll.elems - 1;
my $it = Iterator.RAWCREATE("valid", 1, "value", Any, "next", Any);
$it.value = EMPTY;
my $ix = ($ll.elems - 1);
while $ix >= 0 {
$it = Iterator.RAWCREATE("valid", 1, "next", $it);
Expand Down

0 comments on commit bfb226a

Please sign in to comment.