lbug 0.16.0

An in-process property graph database management system built for query speed and scalability
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include "antlr4-runtime.h" // IWYU pragma: keep; this is the public header.

namespace lbug {
namespace parser {

class ParserErrorStrategy : public antlr4::DefaultErrorStrategy {

protected:
    void reportNoViableAlternative(antlr4::Parser* recognizer,
        const antlr4::NoViableAltException& e) override;
};

} // namespace parser
} // namespace lbug