Taming context-sensitive languages with principled stateful parsing

N Laurent, K Mens - Proceedings of the 2016 ACM SIGPLAN …, 2016 - dl.acm.org
Proceedings of the 2016 ACM SIGPLAN International Conference on Software …, 2016dl.acm.org
Historically, true context-sensitive parsing has seldom been applied to programming
languages, due to its inherent complexity. However, many mainstream programming and
markup languages (C, Haskell, Python, XML, and more) possess context-sensitive features.
These features are traditionally handled with ad-hoc code (eg, custom lexers), outside of the
scope of parsing theory. Current grammar formalisms struggle to express context-sensitive
features. Most solutions lack context transparency: they make grammars hard to write …
Historically, true context-sensitive parsing has seldom been applied to programming languages, due to its inherent complexity. However, many mainstream programming and markup languages (C, Haskell, Python, XML, and more) possess context-sensitive features. These features are traditionally handled with ad-hoc code (e.g., custom lexers), outside of the scope of parsing theory.
Current grammar formalisms struggle to express context-sensitive features. Most solutions lack context transparency: they make grammars hard to write, maintain and compose by hardwiring context through the entire grammar. Instead, we approach context-sensitive parsing through the idea that parsers may recall previously matched input (or data derived therefrom) in order to make parsing decisions. We make use of mutable parse state to enable this form of recall.
We introduce principled stateful parsing as a new transactional discipline that makes state changes transparent to parsing mechanisms such as backtracking and memoization. To enforce this discipline, users specify parsers using formally specified primitive state manipulation operations.
Our solution is available as a parsing library named Autumn. We illustrate our solution by implementing some practical context-sensitive grammar features such as significant whitespace handling and namespace classification.
ACM Digital Library