Author: wayland
Date: 2009-07-24 04:15:04 +0200 (Fri, 24 Jul 2009)
New Revision: 27692

Modified:
   docs/Perl6/Spec/S32-setting-library/Abstraction.pod
Log:
[S32/Abstraction]: Documented .parse and .parsefile methods on Grammar.  
Note that the method signatures may be wrong.  pmichaud++ for pointing 
these functions out.  


Modified: docs/Perl6/Spec/S32-setting-library/Abstraction.pod
===================================================================
--- docs/Perl6/Spec/S32-setting-library/Abstraction.pod 2009-07-23 21:23:32 UTC 
(rev 27691)
+++ docs/Perl6/Spec/S32-setting-library/Abstraction.pod 2009-07-24 02:15:04 UTC 
(rev 27692)
@@ -35,12 +35,19 @@
 
     class Role does Abstraction {...}
 
-    class Grammar does Abstraction {...}
-
     class Module does Abstraction {...}
 
     class Package does Abstraction {...}
 
+=head2 Grammar
+
+
+    class Grammar does Abstraction {
+        method parse(Str $text) {...}
+        method parsefile(Str $filename) {...}
+    }
+
+
 =head1 Additions
 
 Please post errors and feedback to perl6-language.  If you are making

Reply via email to