Closed merkste closed 5 years ago
Make star and plus parse arbitrary many elements
Before, SmallInteger>>maxVal was used as upper bound in parsing star and plus. This may fail if the input is sufficiently long, even earlier on 32 Bit. Now we use 'inf := Float class>>inifinity' as uppber bound, as i < inf for each integer i.
I rebased this branch on the current master.
Tests failed due to authentication errors and build problems, as far as I can see.
Looks good, thanks!
Make star and plus parse arbitrary many elements
Before, SmallInteger>>maxVal was used as upper bound in parsing star and plus. This may fail if the input is sufficiently long, even earlier on 32 Bit. Now we use 'inf := Float class>>inifinity' as uppber bound, as i < inf for each integer i.