| 604 | }; |
| 605 | |
| 606 | class ParserTableOverrideDeclaration : public IParserBase |
| 607 | { |
| 608 | public: |
| 609 | const bool is_standalone; |
| 610 | explicit ParserTableOverrideDeclaration(bool is_standalone_ = true) : is_standalone(is_standalone_) { } |
| 611 | |
| 612 | protected: |
| 613 | const char * getName() const override { return "table override declaration"; } |
| 614 | bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected) override; |
| 615 | }; |
| 616 | |
| 617 | class ParserTableOverridesDeclarationList : public IParserBase |
| 618 | { |