robrix / Hammer

Parsing and pattern matching in Objective-C
BSD 3-Clause "New" or "Revised" License
75 stars 1 forks source link

Ordered pretty printing #65

Closed robrix closed 10 years ago

robrix commented 10 years ago

Pretty printing is ordered by its occurrence in the grammar.

I.e. given a grammar:

S -> x | y z | S

Pretty printing will now yield the productions in left to right, top to bottom order, i.e. S, x, y, z.