chore: add placeholder parse function to group_parser_t
This commit is contained in:
parent
96232c88c9
commit
9f17ac6471
@ -4,6 +4,11 @@
|
|||||||
using namespace ppc::comp::tree::ast;
|
using namespace ppc::comp::tree::ast;
|
||||||
using namespace std::string_literals;
|
using namespace std::string_literals;
|
||||||
|
|
||||||
|
bool group_parser_t::parse(ast_ctx_t &ctx, size_t &i, data::map_t &out) const {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
group_parser_t &group_parser_t::add(parser_t &parser) {
|
group_parser_t &group_parser_t::add(parser_t &parser) {
|
||||||
parsers.push_back(&parser);
|
parsers.push_back(&parser);
|
||||||
return *this;
|
return *this;
|
||||||
|
Loading…
Reference in New Issue
Block a user