stx_goodies_petitparser.st
changeset 233 896c872b5da9
parent 212 4717e419eabc
child 244 c9c5df552e30
equal deleted inserted replaced
232:623d385a29c2 233:896c872b5da9
   136     )
   136     )
   137 !
   137 !
   138 
   138 
   139 extensionMethodNames
   139 extensionMethodNames
   140     "lists the extension methods which are to be included in the project.
   140     "lists the extension methods which are to be included in the project.
   141      Entries are 2-element array literals, consisting of class-name and selector."
   141      Entries are pairwise elements, consisting of class-name and selector."
   142 
   142 
   143     ^ #(
   143     ^ #(
   144 	Block asParser
   144         Block asParser
   145 	BlockContext asParser
   145         BlockContext asParser
   146 	Character asParser
   146         Character asParser
   147 	Character ppMinus:
   147         Character ppMinus:
   148 	Object asParser
   148         Object asParser
   149 	Object isPetitFailure
   149         Object isPetitFailure
   150 	Object isPetitParser
   150         Object isPetitParser
   151 	PositionableStream asPetitStream
   151         PositionableStream asPetitStream
   152 	SequenceableCollection asParser
   152         SequenceableCollection asParser
   153 	SequenceableCollection asPetitStream
   153         SequenceableCollection asPetitStream
   154 	Interval asParser
   154         Interval asParser
   155 	Set asParser
   155         Set asParser
   156 	Stream asPetitStream
   156         Stream asPetitStream
   157 	String asParser
   157         String asParser
   158 	Symbol asParser
   158         Symbol asParser
   159 	Symbol value:
   159         Symbol value:
   160 	Text asPetitStream
   160         Text asPetitStream
   161 	UndefinedObject asParser
   161         UndefinedObject asParser
       
   162         Collection asChoiceParser
       
   163         Collection asSequenceParser
   162     )
   164     )
   163 ! !
   165 ! !
   164 
   166 
   165 !stx_goodies_petitparser class methodsFor:'description - project information'!
   167 !stx_goodies_petitparser class methodsFor:'description - project information'!
   166 
   168 
   228 ! !
   230 ! !
   229 
   231 
   230 !stx_goodies_petitparser class methodsFor:'documentation'!
   232 !stx_goodies_petitparser class methodsFor:'documentation'!
   231 
   233 
   232 version
   234 version
   233     ^ '$Header: /cvs/stx/stx/goodies/petitparser/stx_goodies_petitparser.st,v 1.12 2014-03-04 15:47:18 cg Exp $'
   235     ^ '$Header: /cvs/stx/stx/goodies/petitparser/stx_goodies_petitparser.st,v 1.13 2014-03-04 15:57:45 cg Exp $'
   234 !
   236 !
   235 
   237 
   236 version_CVS
   238 version_CVS
   237     ^ '$Header: /cvs/stx/stx/goodies/petitparser/stx_goodies_petitparser.st,v 1.12 2014-03-04 15:47:18 cg Exp $'
   239     ^ '$Header: /cvs/stx/stx/goodies/petitparser/stx_goodies_petitparser.st,v 1.13 2014-03-04 15:57:45 cg Exp $'
   238 !
   240 !
   239 
   241 
   240 version_MC
   242 version_MC
   241     ^ '$PetitParser-lr.231 a18ceb3c-e6d2-4b74-91c9-33f05d2e0514 2013-03-16T21:51:30 lr$'
   243     ^ '$PetitParser-lr.231 a18ceb3c-e6d2-4b74-91c9-33f05d2e0514 2013-03-16T21:51:30 lr$'
   242 !
   244 !
   243 
   245 
   244 version_SVN
   246 version_SVN
   245     ^ '$Id: stx_goodies_petitparser.st,v 1.12 2014-03-04 15:47:18 cg Exp $'
   247     ^ '$Id: stx_goodies_petitparser.st,v 1.13 2014-03-04 15:57:45 cg Exp $'
   246 ! !
   248 ! !
   247 
   249