18 lines
184 B
C++
18 lines
184 B
C++
#pragma once
|
|
|
|
#include "ast_node.hpp"
|
|
#include "expr.hpp"
|
|
|
|
namespace ast
|
|
{
|
|
|
|
struct Where : public AstNode<Where>
|
|
{
|
|
Where(Expr* expr)
|
|
: expr(expr) {}
|
|
|
|
Expr* expr;
|
|
};
|
|
|
|
}
|