Updated smalltalk parser to PetitSmalltalk-JanKurs.75
authorJan Vrany <jan.vrany@fit.cvut.cz>
Tue, 14 Oct 2014 23:16:37 +0100
changeset 389 009c2e13973c
parent 388 74c9c229033b
child 390 17ba167b8ee1
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
Make.proto
PPParser.st
analyzer/analyzer.rc
analyzer/tests/tests.rc
islands/PPInputEnds.st
islands/PPWater.st
islands/islands.rc
islands/stx_goodies_petitparser_islands.st
islands/tests/FirstFollowNextTests.st
islands/tests/JavaParserTest.st
islands/tests/PPIslandTest.st
islands/tests/PPMemoizingIslandTest.st
islands/tests/RobustXmlFeedParserTest.st
islands/tests/XmlFeedParserTest.st
islands/tests/tests.rc
petitparser.rc
tests/tests.rc
--- 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'."
 
 
 
--- 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
--- 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
--- 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
--- 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
--- 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
--- 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
--- 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: <not expanded> $'
+! !
 
 !stx_goodies_petitparser_islands class methodsFor:'accessing - monticello'!
 
--- 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
--- 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'!
 
--- 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
--- 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 
--- 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
--- 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
--- 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
--- 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
--- 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