# HG changeset patch # User Jan Vrany # Date 1413324997 -3600 # Node ID 009c2e13973c8daf32f36bca2db2e8e0512c696c # Parent 74c9c229033bc6073cc721e3fbb114c8113ccee9 Updated smalltalk parser to PetitSmalltalk-JanKurs.75 Name: PetitSmalltalk-JanKurs.75 Author: JanKurs Time: 13-10-2014, 05:00:14 AM UUID: 6254f8f7-aa47-4ddd-a373-167bccb0d4e5 diff -r 74c9c229033b -r 009c2e13973c Make.proto --- a/Make.proto Wed Oct 08 21:56:20 2014 +0100 +++ b/Make.proto Tue Oct 14 23:16:37 2014 +0100 @@ -63,17 +63,17 @@ all:: preMake classLibRule postMake -pre_objs:: +pre_objs:: mc: mkdir mc -mcz: mc +mcz: mc $(TOP)/projects/smalltalk/smalltalk --eval " \ - Smalltalk packagePath add:'$(TOP)' . \ - Smalltalk loadPackage:'stx:goodies/petitparser'. \ - (Smalltalk at: #'stx_goodies_petitparser') exportAsMczTo: 'mc'." + Smalltalk packagePath add:'$(TOP)' . \ + Smalltalk loadPackage:'stx:goodies/petitparser'. \ + (Smalltalk at: #'stx_goodies_petitparser') exportAsMczTo: 'mc'." diff -r 74c9c229033b -r 009c2e13973c PPParser.st --- a/PPParser.st Wed Oct 08 21:56:20 2014 +0100 +++ b/PPParser.st Tue Oct 14 23:16:37 2014 +0100 @@ -24,6 +24,8 @@ + + !PPParser methodsFor:'accessing'! children diff -r 74c9c229033b -r 009c2e13973c analyzer/analyzer.rc --- a/analyzer/analyzer.rc Wed Oct 08 21:56:20 2014 +0100 +++ b/analyzer/analyzer.rc Tue Oct 14 23:16:37 2014 +0100 @@ -25,7 +25,7 @@ VALUE "LegalCopyright", "Copyright Claus Gittinger 1988-2014\nCopyright eXept Software AG 1998-2014\0" VALUE "ProductName", "Smalltalk/X\0" VALUE "ProductVersion", "6.2.4.0\0" - VALUE "ProductDate", "Tue, 07 Oct 2014 23:30:28 GMT\0" + VALUE "ProductDate", "Tue, 14 Oct 2014 22:14:26 GMT\0" END END diff -r 74c9c229033b -r 009c2e13973c analyzer/tests/tests.rc --- a/analyzer/tests/tests.rc Wed Oct 08 21:56:20 2014 +0100 +++ b/analyzer/tests/tests.rc Tue Oct 14 23:16:37 2014 +0100 @@ -25,7 +25,7 @@ VALUE "LegalCopyright", "Copyright Claus Gittinger 1988-2014\nCopyright eXept Software AG 1998-2014\0" VALUE "ProductName", "Smalltalk/X\0" VALUE "ProductVersion", "6.2.4.0\0" - VALUE "ProductDate", "Tue, 07 Oct 2014 23:30:30 GMT\0" + VALUE "ProductDate", "Tue, 14 Oct 2014 22:14:29 GMT\0" END END diff -r 74c9c229033b -r 009c2e13973c islands/PPInputEnds.st --- a/islands/PPInputEnds.st Wed Oct 08 21:56:20 2014 +0100 +++ b/islands/PPInputEnds.st Tue Oct 14 23:16:37 2014 +0100 @@ -7,9 +7,6 @@ category:'PetitIslands-Parsers' ! -PPInputEnds comment:'' -! - !PPInputEnds methodsFor:'as yet unclassified'! acceptsEpsilon diff -r 74c9c229033b -r 009c2e13973c islands/PPWater.st --- a/islands/PPWater.st Wed Oct 08 21:56:20 2014 +0100 +++ b/islands/PPWater.st Tue Oct 14 23:16:37 2014 +0100 @@ -7,9 +7,6 @@ category:'PetitIslands-Parsers' ! -PPWater comment:'' -! - !PPWater class methodsFor:'as yet unclassified'! on: parser diff -r 74c9c229033b -r 009c2e13973c islands/islands.rc --- a/islands/islands.rc Wed Oct 08 21:56:20 2014 +0100 +++ b/islands/islands.rc Tue Oct 14 23:16:37 2014 +0100 @@ -25,7 +25,7 @@ VALUE "LegalCopyright", "Copyright Claus Gittinger 1988-2014\nCopyright eXept Software AG 1998-2014\0" VALUE "ProductName", "Smalltalk/X\0" VALUE "ProductVersion", "6.2.4.0\0" - VALUE "ProductDate", "Tue, 07 Oct 2014 23:30:31 GMT\0" + VALUE "ProductDate", "Tue, 14 Oct 2014 22:14:20 GMT\0" END END diff -r 74c9c229033b -r 009c2e13973c islands/stx_goodies_petitparser_islands.st --- a/islands/stx_goodies_petitparser_islands.st Wed Oct 08 21:56:20 2014 +0100 +++ b/islands/stx_goodies_petitparser_islands.st Tue Oct 14 23:16:37 2014 +0100 @@ -7,6 +7,12 @@ category:'* Projects & Packages *' ! +!stx_goodies_petitparser_islands class methodsFor:'documentation'! + +extensionsVersion_HG + + ^ '$Changeset: $' +! ! !stx_goodies_petitparser_islands class methodsFor:'accessing - monticello'! diff -r 74c9c229033b -r 009c2e13973c islands/tests/FirstFollowNextTests.st --- a/islands/tests/FirstFollowNextTests.st Wed Oct 08 21:56:20 2014 +0100 +++ b/islands/tests/FirstFollowNextTests.st Tue Oct 14 23:16:37 2014 +0100 @@ -7,9 +7,6 @@ category:'PetitIslands-Tests' ! -FirstFollowNextTests comment:'' -! - !FirstFollowNextTests methodsFor:'support'! assert: set allMatches: string diff -r 74c9c229033b -r 009c2e13973c islands/tests/JavaParserTest.st --- a/islands/tests/JavaParserTest.st Wed Oct 08 21:56:20 2014 +0100 +++ b/islands/tests/JavaParserTest.st Tue Oct 14 23:16:37 2014 +0100 @@ -7,9 +7,6 @@ category:'PetitIslands-Examples' ! -JavaParserTest comment:'' -! - !JavaParserTest class methodsFor:'as yet unclassified'! diff -r 74c9c229033b -r 009c2e13973c islands/tests/PPIslandTest.st --- a/islands/tests/PPIslandTest.st Wed Oct 08 21:56:20 2014 +0100 +++ b/islands/tests/PPIslandTest.st Tue Oct 14 23:16:37 2014 +0100 @@ -7,9 +7,6 @@ category:'PetitIslands-Tests' ! -PPIslandTest comment:'' -! - !PPIslandTest methodsFor:'as yet unclassified'! context diff -r 74c9c229033b -r 009c2e13973c islands/tests/PPMemoizingIslandTest.st --- a/islands/tests/PPMemoizingIslandTest.st Wed Oct 08 21:56:20 2014 +0100 +++ b/islands/tests/PPMemoizingIslandTest.st Tue Oct 14 23:16:37 2014 +0100 @@ -7,9 +7,6 @@ category:'PetitIslands-Tests' ! -PPMemoizingIslandTest comment:'' -! - !PPMemoizingIslandTest class methodsFor:'as yet unclassified'! shouldInheritSelectors diff -r 74c9c229033b -r 009c2e13973c islands/tests/RobustXmlFeedParserTest.st --- a/islands/tests/RobustXmlFeedParserTest.st Wed Oct 08 21:56:20 2014 +0100 +++ b/islands/tests/RobustXmlFeedParserTest.st Tue Oct 14 23:16:37 2014 +0100 @@ -7,9 +7,6 @@ category:'PetitIslands-Examples' ! -RobustXmlFeedParserTest comment:'' -! - !RobustXmlFeedParserTest methodsFor:'as yet unclassified'! feed03 diff -r 74c9c229033b -r 009c2e13973c islands/tests/XmlFeedParserTest.st --- a/islands/tests/XmlFeedParserTest.st Wed Oct 08 21:56:20 2014 +0100 +++ b/islands/tests/XmlFeedParserTest.st Tue Oct 14 23:16:37 2014 +0100 @@ -7,9 +7,6 @@ category:'PetitIslands-Examples' ! -XmlFeedParserTest comment:'' -! - !XmlFeedParserTest methodsFor:'as yet unclassified'! debug: aString rule: aSymbol diff -r 74c9c229033b -r 009c2e13973c islands/tests/tests.rc --- a/islands/tests/tests.rc Wed Oct 08 21:56:20 2014 +0100 +++ b/islands/tests/tests.rc Tue Oct 14 23:16:37 2014 +0100 @@ -25,7 +25,7 @@ VALUE "LegalCopyright", "Copyright Claus Gittinger 1988-2014\nCopyright eXept Software AG 1998-2014\0" VALUE "ProductName", "Smalltalk/X\0" VALUE "ProductVersion", "6.2.4.0\0" - VALUE "ProductDate", "Tue, 07 Oct 2014 23:30:33 GMT\0" + VALUE "ProductDate", "Tue, 14 Oct 2014 22:14:22 GMT\0" END END diff -r 74c9c229033b -r 009c2e13973c petitparser.rc --- a/petitparser.rc Wed Oct 08 21:56:20 2014 +0100 +++ b/petitparser.rc Tue Oct 14 23:16:37 2014 +0100 @@ -25,7 +25,7 @@ VALUE "LegalCopyright", "(C) Lukas Renggli\0" VALUE "ProductName", "Petit Parser\0" VALUE "ProductVersion", "6.2.4.0\0" - VALUE "ProductDate", "Tue, 07 Oct 2014 23:30:24 GMT\0" + VALUE "ProductDate", "Tue, 14 Oct 2014 22:14:18 GMT\0" END END diff -r 74c9c229033b -r 009c2e13973c tests/tests.rc --- a/tests/tests.rc Wed Oct 08 21:56:20 2014 +0100 +++ b/tests/tests.rc Tue Oct 14 23:16:37 2014 +0100 @@ -25,7 +25,7 @@ VALUE "LegalCopyright", "Copyright Claus Gittinger 1988-2014\nCopyright eXept Software AG 1998-2014\0" VALUE "ProductName", "Smalltalk/X\0" VALUE "ProductVersion", "6.2.4.0\0" - VALUE "ProductDate", "Tue, 07 Oct 2014 23:30:26 GMT\0" + VALUE "ProductDate", "Tue, 14 Oct 2014 22:14:24 GMT\0" END END