gazelle-parser 0.9.3

LR parser generator with runtime operator precedence and natural lexer feedback
Documentation
1
2
3
4
5
6
7
// Missing closing paren in if-condition
int main() {
    int x = 1;
    if (x
        return x;
    return 0;
}