diff options
author | robot-piglet <[email protected]> | 2023-12-01 16:59:11 +0300 |
---|---|---|
committer | robot-piglet <[email protected]> | 2023-12-01 19:54:31 +0300 |
commit | 3715aa9254f65ae1058290101351a72a6d3a67d4 (patch) | |
tree | 9ac5a1cdab42dfc7cd095a06a362e0681cb1482f /contrib/libs/antlr4_cpp_runtime/src/misc/InterpreterDataReader.h | |
parent | b20a8c04fb7e595955ca9d1b943033342b6580cb (diff) |
Intermediate changes
Diffstat (limited to 'contrib/libs/antlr4_cpp_runtime/src/misc/InterpreterDataReader.h')
-rw-r--r-- | contrib/libs/antlr4_cpp_runtime/src/misc/InterpreterDataReader.h | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/contrib/libs/antlr4_cpp_runtime/src/misc/InterpreterDataReader.h b/contrib/libs/antlr4_cpp_runtime/src/misc/InterpreterDataReader.h deleted file mode 100644 index 4b83dd129d2..00000000000 --- a/contrib/libs/antlr4_cpp_runtime/src/misc/InterpreterDataReader.h +++ /dev/null @@ -1,33 +0,0 @@ -/* 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 "antlr4-common.h" -#include "atn/ATN.h" -#include "Vocabulary.h" - -namespace antlr4 { -namespace misc { - - struct InterpreterData { - std::unique_ptr<atn::ATN> atn; - dfa::Vocabulary vocabulary; - std::vector<std::string> ruleNames; - std::vector<std::string> channels; // Only valid for lexer grammars. - std::vector<std::string> modes; // ditto - - InterpreterData() {}; // For invalid content. - InterpreterData(std::vector<std::string> const& literalNames, std::vector<std::string> const& symbolicNames); - }; - - // A class to read plain text interpreter data produced by ANTLR. - class ANTLR4CPP_PUBLIC InterpreterDataReader { - public: - static InterpreterData parseFile(std::string const& fileName); - }; - -} // namespace atn -} // namespace antlr4 |