Changeset 22404 for src/perl6

Show
Ignore:
Timestamp:
09/26/08 20:42:31 (2 months ago)
Author:
pmichaud
Message:

Dotty parsing probably wants non-capturing <.unspacey> instead of
zero-width <?unspacey>.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/perl6/STD.pm

    r22258 r22404  
    999999# doing fancy as one rule simplifies LTM 
    10001000token dotty:sym<.*> ( --> Methodcall) { 
    1001     ('.' <[+*?=^:]>) <?unspacey> <dottyop> 
     1001    ('.' <[+*?=^:]>) <.unspacey> <dottyop> 
    10021002    { $<sym> = $0.item; } 
    10031003}