aboutsummaryrefslogtreecommitdiff
path: root/src/parse/ParsingAlgorithmContext.cpp
blob: 686ba3e5ea465f520112dbd06ae6da88f84d19a1 (plain)
1
2
3
4
5
6
7
8
9
#include "cru/parse/ParsingAlgorithmContext.hpp"

namespace cru::parse {
ParsingAlgorithmContext::ParsingAlgorithmContext(Grammar* grammar,
                                                 const ParsingAlgorithm* algorithm)
    : grammar_(grammar), algorithm_(algorithm) {}

ParsingAlgorithmContext::~ParsingAlgorithmContext() {}
}  // namespace cru::parse