Sha256: 449c9ee177ad5d20f86a367f3fa472d40b5f6e157bf652fc5e5429ab3ceb3f29
Contents?: true
Size: 657 Bytes
Versions: 3
Compression:
Stored size: 657 Bytes
Contents
/* Copyright (c) 2012-2017 The ANTLR Project. All rights reserved. * Use of this file is governed by the BSD 3-clause license that * can be found in the LICENSE.txt file in the project root. */ #pragma once #include "BaseErrorListener.h" namespace antlr4 { namespace tree { namespace xpath { class ANTLR4CPP_PUBLIC XPathLexerErrorListener : public BaseErrorListener { public: virtual void syntaxError(Recognizer *recognizer, Token *offendingSymbol, size_t line, size_t charPositionInLine, const std::string &msg, std::exception_ptr e) override; }; } // namespace xpath } // namespace tree } // namespace antlr4
Version data entries
3 entries across 3 versions & 1 rubygems