Skip to content

Commit 90da791

Browse files
committed
fix(parse): add _requires-expression_ to parse_tree_printer
1 parent 79836c6 commit 90da791

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Diff for: source/parse.h

+5
Original file line numberDiff line numberDiff line change
@@ -9237,6 +9237,11 @@ class parse_tree_printer : printing_visitor
92379237
o << pre(indent+1) << "is_constexpr: " << _as<std::string>(n.is_constexpr) << "\n";
92389238
}
92399239

9240+
auto start(requires_expression_node const&, int indent) -> void
9241+
{
9242+
o << pre(indent) << "requires-expression\n";
9243+
}
9244+
92409245
auto start(return_statement_node const&, int indent) -> void
92419246
{
92429247
o << pre(indent) << "return-statement\n";

0 commit comments

Comments
 (0)