You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81f4fd25e7
Follow up on an idea in #31: use the Racket lexer to lex double-quoted strings in a grammar, thereby giving them all the semantics of Racket strings, and preventing any corner cases. This solution can’t be extended to single-quoted strings, however, because even with readtable tomfoolery to recognize a single quote as an opening delimiter for a string, the string still needs to be closed with a double quote. (I don’t know why this should be so, but it is the documented behavior.) Therefore single-quoted strings still are subject to the homegrown lexing solution and the flaws therein. Still, I don’t see that single-quoted strings have ever been a documented feature of brag (or its predecessor ragg). Perhaps they could be dropped altogether. For now, this solution is satisfying, because double-quoted strings are the dominant notation, and this PR will make them as good as they can be. |
3 years ago | |
---|---|---|
.github/workflows | 3 years ago | |
brag | 3 years ago | |
brag-lib | 3 years ago | |
.gitignore | 6 years ago | |
LICENSE.md | 5 years ago | |
README.md | 4 years ago | |
SUBLICENSE.md | 5 years ago |
README.md
brag
Racket DSL for generating parsers from BNF grammars.
Install
raco pkg install brag
Documentation
http://docs.racket-lang.org/brag/
License
MIT. See LICENSE.md
Project status
Complete. I will maintain the code but no major updates are planned.