Author: kjs
Date: Sat Nov 29 10:45:11 2008
New Revision: 33350
Modified:
trunk/NEWS
trunk/t/pmc/coroutine.t
Log:
[t] fix a test.
+ update NEWS; I overlooked deprecations section, so merge them.
Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS (original)
+++ trunk/NEWS Sat Nov 29 10:45:11 2008
@@ -1,15 +1,14 @@
# $Id$
New in December 2008 Release
-- Deprecations
- + PARROT_API is now PARROT_EXPORT
- + :lexid is now :subid
- Compilers
+ PIRC
- add macro handling to PASM mode
- disable vanilla register allocation in PASM mode, but do allow
optimization
- add tests and bug fixes
-- Deprecated
+- Deprecations
+ + PARROT_API is now PARROT_EXPORT
+ + :lexid is now :subid
+ .arg is now .set_arg
+ .result is now .get_result
+ .yield (in .begin/end_yield) is now .set_yield
Modified: trunk/t/pmc/coroutine.t
==============================================================================
--- trunk/t/pmc/coroutine.t (original)
+++ trunk/t/pmc/coroutine.t Sat Nov 29 10:45:11 2008
@@ -86,7 +86,7 @@
x = 0
iloop:
.begin_yield
- .set_return x
+ .set_yield x
.end_yield
x = x + 1
if x <= 10 goto iloop