Revision 27695

Date:
2009/07/24 05:00:41
Author:
wayland
Revision Log:
[S32/Abstraction] Added "action" optional parameter to parse and parsefile.
Files:

Legend:

 
Added
 
Removed
 
Modified
  • docs/Perl6/Spec/S32-setting-library/Abstraction.pod

     
    43 43
    44 44
    45 45 class Grammar does Abstraction {
    46 method parse(Str $text) {...}
    47 method parsefile(Str $filename) {...}
    46 method parse(Str $text, $action?) {...}
    47 method parsefile(Str $filename, $action?) {...}
    48 48 }
    49 49
    50 50