initial
authorClaus Gittinger <cg@exept.de>
Tue, 04 Mar 2014 16:57:45 +0100
changeset 233 896c872b5da9
parent 232 623d385a29c2
child 234 a4a74db682ae
initial
stx_goodies_petitparser.st
--- a/stx_goodies_petitparser.st	Tue Mar 04 16:57:44 2014 +0100
+++ b/stx_goodies_petitparser.st	Tue Mar 04 16:57:45 2014 +0100
@@ -138,27 +138,29 @@
 
 extensionMethodNames
     "lists the extension methods which are to be included in the project.
-     Entries are 2-element array literals, consisting of class-name and selector."
+     Entries are pairwise elements, consisting of class-name and selector."
 
     ^ #(
-	Block asParser
-	BlockContext asParser
-	Character asParser
-	Character ppMinus:
-	Object asParser
-	Object isPetitFailure
-	Object isPetitParser
-	PositionableStream asPetitStream
-	SequenceableCollection asParser
-	SequenceableCollection asPetitStream
-	Interval asParser
-	Set asParser
-	Stream asPetitStream
-	String asParser
-	Symbol asParser
-	Symbol value:
-	Text asPetitStream
-	UndefinedObject asParser
+        Block asParser
+        BlockContext asParser
+        Character asParser
+        Character ppMinus:
+        Object asParser
+        Object isPetitFailure
+        Object isPetitParser
+        PositionableStream asPetitStream
+        SequenceableCollection asParser
+        SequenceableCollection asPetitStream
+        Interval asParser
+        Set asParser
+        Stream asPetitStream
+        String asParser
+        Symbol asParser
+        Symbol value:
+        Text asPetitStream
+        UndefinedObject asParser
+        Collection asChoiceParser
+        Collection asSequenceParser
     )
 ! !
 
@@ -230,11 +232,11 @@
 !stx_goodies_petitparser class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/goodies/petitparser/stx_goodies_petitparser.st,v 1.12 2014-03-04 15:47:18 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/goodies/petitparser/stx_goodies_petitparser.st,v 1.13 2014-03-04 15:57:45 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/goodies/petitparser/stx_goodies_petitparser.st,v 1.12 2014-03-04 15:47:18 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/goodies/petitparser/stx_goodies_petitparser.st,v 1.13 2014-03-04 15:57:45 cg Exp $'
 !
 
 version_MC
@@ -242,6 +244,6 @@
 !
 
 version_SVN
-    ^ '$Id: stx_goodies_petitparser.st,v 1.12 2014-03-04 15:47:18 cg Exp $'
+    ^ '$Id: stx_goodies_petitparser.st,v 1.13 2014-03-04 15:57:45 cg Exp $'
 ! !