Wed, 08 Oct 2014 21:56:20 +0100 Workaround to fix PPComposedTest>>testLeftRecursion - make PPStream>>size returning size of the input.
Jan Vrany <jan.vrany@fit.cvut.cz> [Wed, 08 Oct 2014 21:56:20 +0100] rev 388
Workaround to fix PPComposedTest>>testLeftRecursion - make PPStream>>size returning size of the input. For whatever reason, in Smalltalk/X ReadStream>>size returns size remaning data, not the size of a whole stream. This is a bug and should be fixed in Smalltalk/X libbasic. Meanwhile, override PPStream>>size to return proper value. In Pharo, the method is not needed as the inherited method is exactly the same.
Wed, 08 Oct 2014 00:33:44 +0100 Commited a island parser support (MC package PetitIslands)
Jan Vrany <jan.vrany@fit.cvut.cz> [Wed, 08 Oct 2014 00:33:44 +0100] rev 387
Commited a island parser support (MC package PetitIslands) Name: PetitIslands-JanKurs.10 Author: JanKurs Time: 06-10-2014, 11:50:57 AM UUID: 19560ad2-4899-43d5-8c69-cf7274ad4f04 Repository: http://smalltalkhub.com/mc/Moose/PetitParser/main
Wed, 08 Oct 2014 00:08:21 +0100 Smalltalk parser almost fixed (except few pragma-related tests).
Jan Vrany <jan.vrany@fit.cvut.cz> [Wed, 08 Oct 2014 00:08:21 +0100] rev 386
Smalltalk parser almost fixed (except few pragma-related tests). Code is bit ugly sometimes....
Tue, 07 Oct 2014 09:42:03 +0100 Commited a Smalltalk parser (MC package PetitSmalltalk)
Jan Vrany <jan.vrany@fit.cvut.cz> [Tue, 07 Oct 2014 09:42:03 +0100] rev 385
Commited a Smalltalk parser (MC package PetitSmalltalk) Name: PetitSmalltalk-JanKurs.71 Author: JanKurs Time: 19-08-2014, 02:18:05 AM UUID: d1d11836-f3e2-4709-abd3-e2ff3b72d7c4 Repository: http://smalltalkhub.com/mc/Moose/PetitParser/main Ancestors: Fixes to be compatible with PPContext
Mon, 06 Oct 2014 19:18:20 +0100 Fixed stx_goodies_petitparser_analyzer class>>testSuite
Jan Vrany <jan.vrany@fit.cvut.cz> [Mon, 06 Oct 2014 19:18:20 +0100] rev 384
Fixed stx_goodies_petitparser_analyzer class>>testSuite Return testsuite from stx:goodies/petitparser/analyzer/tests.
Sat, 04 Oct 2014 23:34:14 +0100 Removed leftover Smalltalk/X-ism: end-of-line comments.
Jan Vrany <jan.vrany@fit.cvut.cz> [Sat, 04 Oct 2014 23:34:14 +0100] rev 383
Removed leftover Smalltalk/X-ism: end-of-line comments. Not supported by Pharo.
Sun, 05 Oct 2014 00:29:07 +0100 Added target `mcz` to export .mcz package out of Smalltalk/X package.
Jan Vrany <jan.vrany@fit.cvut.cz> [Sun, 05 Oct 2014 00:29:07 +0100] rev 382
Added target `mcz` to export .mcz package out of Smalltalk/X package.
Sat, 04 Oct 2014 21:26:15 +0100 `PPParser>>allParsers`, `allParsersDo:(seen:)` moved to base PetitParser package.
Jan Vrany <jan.vrany@fit.cvut.cz> [Sat, 04 Oct 2014 21:26:15 +0100] rev 381
`PPParser>>allParsers`, `allParsersDo:(seen:)` moved to base PetitParser package. The method #allParsersDo: is actually used used by PPContext>>initializeFor: therefore it has to be in the package stx:goodies/petitparser (MC package PetitParser) and _NOT_ in stx:goodies/petitparser/analyzer (MC package PetitAnalyzer)
Sun, 05 Oct 2014 00:05:20 +0100 Remove Pharoisms to make code more portable and running on Smalltalk/X
Jan Vrany <jan.vrany@fit.cvut.cz> [Sun, 05 Oct 2014 00:05:20 +0100] rev 380
Remove Pharoisms to make code more portable and running on Smalltalk/X * Use ANSI `(Character codePoint: 13)` (`10`) instead of `Character cr` (`lf`), This is more portable and does not depend on dialects interpretation of `#cr` - Smalltalk/X convert it according to platform line end convention (UNIX/Windows/Mac) * Do not assume exact value of a printstring in tests, i.e., instead of `msg includesSubstring: '$a' code `msg includesSubstring: $a printString. This way, the test is independent on the printString value, which may differ among dialects. Q: Is printString value of String and/or Character defined in ANSI? * In assestions, instead of `#equals:` use plain old `#=`, which is more portable. * Removed Character>>- used to create range parser. Use portable `(Interval from: $a to: $z) asParser` instead of just `$a - $z`. Do not use ($a to: $z) asParser as in Pharo, Character>>to: does not create an Interval but an Array (sigh).
Fri, 03 Oct 2014 03:11:33 +0100 Some tests fixed.
Jan Vrany <jan.vrany@fit.cvut.cz> [Fri, 03 Oct 2014 03:11:33 +0100] rev 379
Some tests fixed.
Fri, 03 Oct 2014 02:45:16 +0100 Merged in latest version from Moose repository
Jan Vrany <jan.vrany@fit.cvut.cz> [Fri, 03 Oct 2014 02:45:16 +0100] rev 378
Merged in latest version from Moose repository Name: PetitAnalyzer-DiegoLont.46 Author: DiegoLont Time: 02-09-2013, 12:37:58 PM UUID: 89f155fa-89b4-4bb7-b76e-0f8485be4a56 Repository: http://smalltalkhub.com/mc/Moose/PetitParser/main
Fri, 03 Oct 2014 02:33:08 +0100 Updated to latest version from Moose repository.
Jan Vrany <jan.vrany@fit.cvut.cz> [Fri, 03 Oct 2014 02:33:08 +0100] rev 377
Updated to latest version from Moose repository. Name: PetitParser-JanKurs.250 Author: JanKurs Time: 01-10-2014, 04:44:04 AM UUID: c46eea20-51a0-4deb-8fd5-8cb99810a8b4 Repository: http://smalltalkhub.com/mc/Moose/PetitParser/main Name: PetitTests-JanKurs.60 Author: JanKurs Time: 29-09-2014, 11:48:10 AM UUID: 28fd2e65-c287-4f73-b71e-5b6bb25bebaa Repository: http://smalltalkhub.com/mc/Moose/PetitParser/main
Fri, 03 Oct 2014 01:59:10 +0100 Added monticelloName to package definition to ease export to .mcz
Jan Vrany <jan.vrany@fit.cvut.cz> [Fri, 03 Oct 2014 01:59:10 +0100] rev 376
Added monticelloName to package definition to ease export to .mcz
Fri, 03 Oct 2014 01:36:33 +0100 All tests moved from stx:goodies/petitparser to stx:goodies/petitparser/tests
Jan Vrany <jan.vrany@fit.cvut.cz> [Fri, 03 Oct 2014 01:36:33 +0100] rev 375
All tests moved from stx:goodies/petitparser to stx:goodies/petitparser/tests ..,to conform package layout standards.
Fri, 03 Oct 2014 00:52:34 +0100 Added tag exept_cvs_2014_10_03 for changeset c286737f38a7
Jan Vrany <jan.vrany@fit.cvut.cz> [Fri, 03 Oct 2014 00:52:34 +0100] rev 374
Added tag exept_cvs_2014_10_03 for changeset c286737f38a7
Sat, 21 Feb 2015 13:36:32 +0100 class: stx_goodies_petitparser
Claus Gittinger <cg@exept.de> [Sat, 21 Feb 2015 13:36:32 +0100] rev 373
class: stx_goodies_petitparser comment/format in: #documentation
Tue, 10 Feb 2015 05:04:45 +0000 update tags
convert-repo [Tue, 10 Feb 2015 05:04:45 +0000] rev 372
update tags
Mon, 09 Feb 2015 15:15:28 +0100 class: stx_goodies_petitparser
Claus Gittinger <cg@exept.de> [Mon, 09 Feb 2015 15:15:28 +0100] rev 371
class: stx_goodies_petitparser added: #documentation
Thu, 02 Oct 2014 22:38:22 +0000 update tags exept_cvs_2014_10_03
convert-repo [Thu, 02 Oct 2014 22:38:22 +0000] rev 370
update tags
Tue, 01 Jul 2014 12:00:38 +0200 *** empty log message *** expecco_2_7_0
Claus Gittinger <cg@exept.de> [Tue, 01 Jul 2014 12:00:38 +0200] rev 369
*** empty log message ***
Tue, 01 Jul 2014 11:59:37 +0200 *** empty log message ***
Claus Gittinger <cg@exept.de> [Tue, 01 Jul 2014 11:59:37 +0200] rev 368
*** empty log message ***
Wed, 30 Apr 2014 15:16:47 +0200 *** empty log message ***
Claus Gittinger <cg@exept.de> [Wed, 30 Apr 2014 15:16:47 +0200] rev 367
*** empty log message ***
Wed, 05 Mar 2014 00:58:41 +0100 class: PPParser expecco_18_1_0 expecco_18_1_0wa1 expecco_2_10_0 expecco_2_10_0_41 expecco_2_11_0 expecco_2_11_1 expecco_2_9_0 expecco_2_9_0_win75_lx36 expecco_2_9_1 expecco_ALM_1_10_0 expecco_ALM_1_10_0_8 expecco_ALM_1_11_0 expecco_ALM_1_11_0_2 expecco_ALM_1_11_2 expecco_head_5844
Claus Gittinger <cg@exept.de> [Wed, 05 Mar 2014 00:58:41 +0100] rev 366
class: PPParser comment/format in: #>=>
Wed, 05 Mar 2014 00:58:31 +0100 class: PPParserDebuggerResult
Claus Gittinger <cg@exept.de> [Wed, 05 Mar 2014 00:58:31 +0100] rev 365
class: PPParserDebuggerResult added: #new comment/format in: #parse:with:
Wed, 05 Mar 2014 00:34:06 +0100 class: PPExtractProdcutionRefactoring expeccoALM_1_9_0_1 expecco_2_8_0 expecco_2_8_0a expecco_2_8_0b expecco_ALM_1_9_5 expecco_ALM_1_9_6 expecco_ALM_1_9_7
Claus Gittinger <cg@exept.de> [Wed, 05 Mar 2014 00:34:06 +0100] rev 364
class: PPExtractProdcutionRefactoring changed: #nameNewMethod:
Wed, 05 Mar 2014 00:33:59 +0100 class: PPRemoveProdcutionRefactoring
Claus Gittinger <cg@exept.de> [Wed, 05 Mar 2014 00:33:59 +0100] rev 363
class: PPRemoveProdcutionRefactoring class definition
Wed, 05 Mar 2014 00:33:51 +0100 class: PPRenameProdcutionRefactoring expecco_2_7_0_49 expecco_2_7_5 expecco_2_7_5a
Claus Gittinger <cg@exept.de> [Wed, 05 Mar 2014 00:33:51 +0100] rev 362
class: PPRenameProdcutionRefactoring changed: #transform
Wed, 05 Mar 2014 00:33:40 +0100 class: PPGrammarRefactoringTest
Claus Gittinger <cg@exept.de> [Wed, 05 Mar 2014 00:33:40 +0100] rev 361
class: PPGrammarRefactoringTest changed:5 methods
Tue, 04 Mar 2014 22:20:50 +0100 initial checkin
Claus Gittinger <cg@exept.de> [Tue, 04 Mar 2014 22:20:50 +0100] rev 360
initial checkin
Tue, 04 Mar 2014 22:20:44 +0100 initial checkin
Claus Gittinger <cg@exept.de> [Tue, 04 Mar 2014 22:20:44 +0100] rev 359
initial checkin
(0) -300 -100 -50 -30 +30 +50 +100 tip