// Copyright (c) 2020-now by the Zeek Project. See LICENSE for details. #pragma once #include #include #include #include #include namespace hilti { /** Base class for statement nodes. */ class Statement : public Node { protected: Statement(ASTContext* ctx, node::Tags node_tags, Nodes children, Meta meta) : Node::Node(ctx, node_tags, std::move(children), std::move(meta)) {} std::string _dump() const override; HILTI_NODE_0(Statement, override); }; } // namespace hilti