#OTHER by cg
authorClaus Gittinger <cg@exept.de>
Mon, 27 May 2019 15:17:45 +0200
changeset 638 e41b42b3928f
parent 637 b19fe5d5f1dc
child 639 5eef58208eab
#OTHER by cg class: URL category of: #postCopy
PPListParser.st
--- a/PPListParser.st	Mon May 27 15:17:40 2019 +0200
+++ b/PPListParser.st	Mon May 27 15:17:45 2019 +0200
@@ -1,5 +1,7 @@
 "{ Package: 'stx:goodies/petitparser' }"
 
+"{ NameSpace: Smalltalk }"
+
 PPParser subclass:#PPListParser
 	instanceVariableNames:'parsers'
 	classVariableNames:''
@@ -61,7 +63,9 @@
 
 copyWith: aParser
 	^ self species withAll: (parsers copyWith: aParser)
-!
+! !
+
+!PPListParser methodsFor:'copying-private'!
 
 postCopy
 	super postCopy.
@@ -82,14 +86,14 @@
 !PPListParser class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPListParser.st,v 1.4 2014-03-04 14:32:58 cg Exp $'
+    ^ '$Header$'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPListParser.st,v 1.4 2014-03-04 14:32:58 cg Exp $'
+    ^ '$Header$'
 !
 
 version_SVN
-    ^ '$Id: PPListParser.st,v 1.4 2014-03-04 14:32:58 cg Exp $'
+    ^ '$Id$'
 ! !