kursjan / petitparser2

A high-performance top-down parser
MIT License
41 stars 17 forks source link

Reconsider use of Stack #42

Closed jgfoster closed 5 years ago

jgfoster commented 5 years ago

When loading PetitParser into GemStone I need to create a new class Stack with #push:, #pop, and #top. I've done this as a subclass of OrderedCollection with #add:, #removeLast, and #last. For maximum portability it would be nice to remove this dependency.