Abstract
The Haskell definition and implementation of read is far from perfect. In the first place read is not able to handle the associativities defined for infix operators. Furthermore, it puts constraints on the way show is defined, and especially forces it to generate far more parentheses than expected. Lastly, it may give rise to exponential parsing times. All this is due to the compositionality requirement for read functions, which imposes a top-down parsing strategy.
We propose a different approach, based on typed abstract syntax, in which grammars describing the data types are composed dynamically. Using the transformation libraries described in a companion paper these syntax descriptions are combined and transformed into parsers at runtime, from which the required read function are constructed. In this way we obtain linear parsing times, achieve consistency with the defined associativities, and may use a version of show which generates far fewer parentheses, thus improving readability of printed values.
The described transformation algorithms can be incorporated in a Haskell compiler, thus moving most of the work involved to compile time.
Original language | Undefined/Unknown |
---|---|
Title of host publication | Proceedings of the first ACM SIGPLAN symposium on Haskell |
Editors | A. Gill |
Place of Publication | New York |
Publisher | Association for Computing Machinery |
Pages | 63-74 |
Number of pages | 12 |
Publication status | Published - 25 Sept 2008 |
Keywords
- Wiskunde en Informatica (WIIN)