gazelle-parser 0.9.3

LR parser generator with runtime operator precedence and natural lexer feedback
Documentation
1
2
3
4
5
6
// Duplicate keyword where expression expected
int main() {
    int x;
    x = return 5;
    return x;
}