[svn:parrot] r48030 - branches/gsoc_past_optimization/runtime/parrot/library/PAST
tcurtis at svn.parrot.org
tcurtis at svn.parrot.org
Wed Jul 7 15:19:45 UTC 2010
Author: tcurtis
Date: Wed Jul 7 15:19:45 2010
New Revision: 48030
URL: https://trac.parrot.org/parrot/changeset/48030
Log:
Fixed the bug preventing viviself from being walked.
Modified:
branches/gsoc_past_optimization/runtime/parrot/library/PAST/Walker.nqp
Modified: branches/gsoc_past_optimization/runtime/parrot/library/PAST/Walker.nqp
==============================================================================
--- branches/gsoc_past_optimization/runtime/parrot/library/PAST/Walker.nqp Wed Jul 7 15:14:15 2010 (r48029)
+++ branches/gsoc_past_optimization/runtime/parrot/library/PAST/Walker.nqp Wed Jul 7 15:19:45 2010 (r48030)
@@ -26,7 +26,7 @@
until ($index == $max) {
walk($walker, $var[$index++]);
}
- walk($walker, $var.viviself) if $walker.walkable(viviself);
+ walk($walker, $var.viviself) if $walker.walkable($var.viviself);
}
}
More information about the parrot-commits
mailing list