# HG changeset patch # User Claus Gittinger # Date 1558963060 -7200 # Node ID b19fe5d5f1dc4655ddcf7b214821abf0a59a662c # Parent e60f53658aeb724ab673650cfa055a0f997e8107 #OTHER by cg class: URL category of: #postCopy diff -r e60f53658aeb -r b19fe5d5f1dc PPParser.st --- a/PPParser.st Fri Mar 08 04:30:37 2019 +0000 +++ b/PPParser.st Mon May 27 15:17:40 2019 +0200 @@ -1,5 +1,7 @@ "{ Package: 'stx:goodies/petitparser' }" +"{ NameSpace: Smalltalk }" + Object subclass:#PPParser instanceVariableNames:'properties' classVariableNames:'' @@ -18,18 +20,6 @@ ^ self basicNew initialize ! ! - - - - - - - - - - - - !PPParser methodsFor:'accessing'! children @@ -107,7 +97,7 @@ ^ self ! ! -!PPParser methodsFor:'copying'! +!PPParser methodsFor:'copying-private'! postCopy super postCopy. @@ -554,18 +544,17 @@ ^ false ! ! - !PPParser class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPParser.st,v 1.7 2014-03-04 23:58:41 cg Exp $' + ^ '$Header$' ! version_CVS - ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPParser.st,v 1.7 2014-03-04 23:58:41 cg Exp $' + ^ '$Header$' ! version_SVN - ^ '$Id: PPParser.st,v 1.7 2014-03-04 23:58:41 cg Exp $' + ^ '$Id$' ! !