+$arg changed to :$arg, per Larry
(http://www.nntp.perl.org/group/perl.perl6.language/23820).
* examples, t, ext, docs, perl5, src/perl6: Changed +$arg to :$arg (and
related) -- I searched using egrep -r '\+\+?\s*[$@%]', hopefully I've found
all occurances...
* Pugs.Lexer: ":Foo" is not a valid type.
* Pugs.Parser: Parse :$arg, +:$arg etc. (but not :foo($bar) yet, as this
requires changes to the definition of VCode).
* Pugs.Parser: Adjustments to the rule which parses the
invocant-list-delimeter-colon --
method foo (: $a) # positional $a, $a is not an inv param
method foo (:$a) # named $a
Note that I had to use lookAhead and try...
* Pugs.AST.Internals: Minor adjustment WRT the Pugs.Parser change.