Changeset 13264 for ChangeLog

Show
Ignore:
Timestamp:
09/13/06 18:54:48 (2 years ago)
Author:
agentz
Message:

[ChangeLog?]
- more items added, now i've reviewed r12962 ~ r13261.

(remember, i'm changelogging in the reversed order.)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • ChangeLog

    r13263 r13264  
    1010= Changes for 6.28.0 (rXXXXX) - July XX, 2006 
    1111 
    12 # Agent Zhang processed r13048 ~ r13261 (not including fglock's work) 
     12# Agent Zhang has reviewed r12962 ~ r13261 
     13# (not including fglock's work) 
    1314 
    1415== New Perl 6 modules 
     
    120121* Added support for the "%b" modifier in `sprintf` and `fmt`, which 
    121122  requires parrot due to use of rules. 
     123* The following code is no longer allowed: 
     124    my $x; 
     125    { 
     126        $x = 1; 
     127        my $x = 2; 
     128    } 
     129* "role A does A" is not allowed anymore. 
    122130* Initial support for Capture and Signature objects. 
    123131** Support for: 
     
    128136   Note that this is not strictly correct for "state T $x", but 
    129137   let's do it this way for now. 
    130  
     138** Handle named parameters in Signatures. 
     139    :( :$justify )                # which is shorthand for... 
     140    :( :justify($justify) )       # but you can also say 
     141    :( :justify($justification) ) # the long name is used inside body; 
     142                                  # the short name by callers 
    131143XXX audreyt and gaal? 
    132144