26 lines
585 B
C++
26 lines
585 B
C++
// Copyright (c) 2020-now by the Zeek Project. See LICENSE for details.
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
#include <utility>
|
|
|
|
#include <hilti/ast/ast-context.h>
|
|
#include <hilti/ast/forward.h>
|
|
#include <hilti/ast/node.h>
|
|
|
|
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
|