diff options
author | crupest <crupest@outlook.com> | 2022-02-08 16:53:51 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-02-08 16:53:51 +0800 |
commit | 74bb9cd27242b9320f99ff4d2b50c3051576cc14 (patch) | |
tree | 744bac5799c593d1d6f81e7b09581bea626f2cde /include/cru/parse/RecursiveDescentAlgorithmContext.hpp | |
parent | b90c398de829d1ba5329651d75bae82f5e4085fe (diff) | |
download | cru-74bb9cd27242b9320f99ff4d2b50c3051576cc14.tar.gz cru-74bb9cd27242b9320f99ff4d2b50c3051576cc14.tar.bz2 cru-74bb9cd27242b9320f99ff4d2b50c3051576cc14.zip |
...
Diffstat (limited to 'include/cru/parse/RecursiveDescentAlgorithmContext.hpp')
-rw-r--r-- | include/cru/parse/RecursiveDescentAlgorithmContext.hpp | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/include/cru/parse/RecursiveDescentAlgorithmContext.hpp b/include/cru/parse/RecursiveDescentAlgorithmContext.hpp deleted file mode 100644 index b29ee1a1..00000000 --- a/include/cru/parse/RecursiveDescentAlgorithmContext.hpp +++ /dev/null @@ -1,22 +0,0 @@ -#pragma once - -#include "ParsingAlgorithmContext.hpp" -#include "cru/parse/ParsingTreeNode.hpp" -#include "cru/parse/RecursiveDescentAlgorithm.hpp" -#include "cru/parse/Terminal.hpp" - -namespace cru::parse { -class CRU_PARSE_API RecursiveDescentAlgorithmContext : public ParsingAlgorithmContext { - public: - RecursiveDescentAlgorithmContext(Grammar* grammar, - const RecursiveDescentAlgorithm* algorithm); - - CRU_DELETE_COPY(RecursiveDescentAlgorithmContext) - CRU_DELETE_MOVE(RecursiveDescentAlgorithmContext) - - ~RecursiveDescentAlgorithmContext() override; - - public: - ParsingTreeNode* Parse(const std::vector<Terminal*>& input) override; -}; -} // namespace cru::parse |