File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -9100,14 +9100,23 @@ class parse_tree_printer : printing_visitor
9100
9100
<< static_cast <void const *>(n.my_statement ) << " ]\n " ;
9101
9101
}
9102
9102
9103
- auto start (expression_list_node::expression_term const &n , int indent) -> void
9103
+ auto start (expression_list_node::term const &, int indent) -> void
9104
9104
{
9105
9105
o << pre (indent) << " expression-list term\n " ;
9106
+ }
9107
+
9108
+ auto start (expression_list_node::expression_term const &n, int indent) -> void
9109
+ {
9106
9110
if (n.pass == passing_style::out) {
9107
- o << pre (indent+ 1 ) << " out\n " ;
9111
+ o << pre (indent) << " out\n " ;
9108
9112
}
9109
9113
}
9110
9114
9115
+ auto start (expression_list_node::type_id_term const &, int indent) -> void
9116
+ {
9117
+ o << pre (indent) << " type\n " ;
9118
+ }
9119
+
9111
9120
auto start (expression_list_node const &, int indent) -> void
9112
9121
{
9113
9122
o << pre (indent) << " expression-list\n " ;
You can’t perform that action at this time.
0 commit comments