// Copyright (c) 2020-now by the Zeek Project. See LICENSE for details. #pragma once #include #include #include #include namespace hilti::expression { /** AST node for an expression that's being coerced from one type to another. */ class Coerced : public Expression { public: auto expression() const { return child(0); } QualifiedType* type() const final { return child(1); } static auto create(ASTContext* ctx, Expression* expr, QualifiedType* target, Meta meta = {}) { return ctx->make(ctx, {expr, target}, std::move(meta)); } protected: Coerced(ASTContext* ctx, Nodes children, Meta meta) : Expression(ctx, NodeTags, std::move(children), std::move(meta)) {} HILTI_NODE_1(expression::Coerced, Expression, final); }; } // namespace hilti::expression