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$' ! !