# HG changeset patch # User Claus Gittinger # Date 1558963065 -7200 # Node ID e41b42b3928f7c2327deaa13fa6ee7903a7ad9cd # Parent b19fe5d5f1dc4655ddcf7b214821abf0a59a662c #OTHER by cg class: URL category of: #postCopy diff -r b19fe5d5f1dc -r e41b42b3928f 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$' ! !