Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
Abnf-To-Antlr-1.6-Binaries.zip | 2020-01-04 | 140.2 kB | |
README.md | 2020-01-04 | 778 Bytes | |
Version 1.6.tar.gz | 2020-01-04 | 1.9 MB | |
Version 1.6.zip | 2020-01-04 | 2.1 MB | |
Totals: 4 Items | 4.1 MB | 0 |
- Support RFC 7405 (Case-Sensitive String Support in ABNF).
- Support Errata 5334 (Single-quoted strings are case-sensitive).
- Show detailed ANTLR error messages with line number and column number.
- Treat all ANTLR errors as exceptions (ignores ANTLR auto recovery).
- Treat repetitions as greedy (e.g.,
1*4"8"
translates to'8' ('8' '8' '8' | '8' '8' | '8'?)
instead of'8' ('8'? | '8' '8' | '8' '8' '8' )
. - Add comprehensive file-driven unit tests with 95% code coverage.
- Fix num-val concatenations (e.g.,
%d65.66
translates to'A' 'B'
instead of'A'|'B'
) - Fix command line to support
--direct
parameter correctly - Add generator solution for editing AbnfAst.g3 and generating parser and lexer files in Visual Studio.