@@ -1389,7 +1389,7 @@ struct type_id_node
1389
1389
int dereference_cnt = {};
1390
1390
token const * suspicious_initialization = {};
1391
1391
1392
- enum active : u8 { empty=0 , decltype_ , qualified, unqualified, function, keyword };
1392
+ enum active : u8 { empty=0 , postfix , qualified, unqualified, function, keyword };
1393
1393
std::variant<
1394
1394
std::monostate,
1395
1395
std::unique_ptr<postfix_expression_node>,
@@ -1460,7 +1460,7 @@ struct type_id_node
1460
1460
switch (id.index ()) {
1461
1461
break ;case empty:
1462
1462
return {};
1463
- break ;case decltype_ :
1463
+ break ;case postfix :
1464
1464
return {};
1465
1465
break ;case qualified:
1466
1466
return {};
@@ -1490,7 +1490,7 @@ struct type_id_node
1490
1490
for (auto q : pc_qualifiers) {
1491
1491
v.start (*q, depth+1 );
1492
1492
}
1493
- try_visit<decltype_ >(id, v, depth);
1493
+ try_visit<postfix >(id, v, depth);
1494
1494
try_visit<qualified >(id, v, depth);
1495
1495
try_visit<unqualified>(id, v, depth);
1496
1496
try_visit<function >(id, v, depth);
@@ -2825,8 +2825,8 @@ auto type_id_node::to_string() const
2825
2825
switch (id.index ()) {
2826
2826
break ;case empty:
2827
2827
ret += " _" ;
2828
- break ;case decltype_ :
2829
- ret += std::get<decltype_ >(id)->to_string ();
2828
+ break ;case postfix :
2829
+ ret += std::get<postfix >(id)->to_string ();
2830
2830
break ;case qualified:
2831
2831
ret += std::get<qualified>(id)->to_string ();
2832
2832
break ;case unqualified:
@@ -5157,7 +5157,7 @@ auto pretty_print_visualize(type_id_node const& n, int indent)
5157
5157
}
5158
5158
5159
5159
if (n.id .index () == type_id_node::empty) { ret += " _" ; }
5160
- ret += try_pretty_print_visualize<type_id_node::decltype_ >(n.id , indent);
5160
+ ret += try_pretty_print_visualize<type_id_node::postfix >(n.id , indent);
5161
5161
ret += try_pretty_print_visualize<type_id_node::qualified >(n.id , indent);
5162
5162
ret += try_pretty_print_visualize<type_id_node::unqualified>(n.id , indent);
5163
5163
ret += try_pretty_print_visualize<type_id_node::function >(n.id , indent);
@@ -6941,6 +6941,7 @@ class parser
6941
6941
6942
6942
6943
6943
// G type-id:
6944
+ // G type-qualifier-seq? 'type_of' '(' expression ')' is-type-constraint?
6944
6945
// G type-qualifier-seq? 'decltype' '(' expression ')' is-type-constraint?
6945
6946
// G type-qualifier-seq? qualified-id is-type-constraint?
6946
6947
// G type-qualifier-seq? unqualified-id is-type-constraint?
@@ -6985,11 +6986,13 @@ class parser
6985
6986
}
6986
6987
6987
6988
if (auto & c = curr ();
6988
- c == " decltype"
6989
+ c == " type_of"
6990
+ || c == " decltype"
6989
6991
)
6990
6992
{
6991
6993
if (
6992
- peek (1 ) && peek (1 )->type () == lexeme::LeftParen
6994
+ c == " decltype"
6995
+ && peek (1 ) && peek (1 )->type () == lexeme::LeftParen
6993
6996
&& peek (2 ) && *peek (2 ) == " auto"
6994
6997
&& peek (3 ) && peek (3 )->type () == lexeme::RightParen)
6995
6998
{
@@ -7008,11 +7011,11 @@ class parser
7008
7011
{
7009
7012
n->pos = id->position ();
7010
7013
n->id = std::move (id);
7011
- assert (n->id .index () == type_id_node::decltype_ );
7014
+ assert (n->id .index () == type_id_node::postfix );
7012
7015
}
7013
7016
else
7014
7017
{
7015
- error (" 'decltype ' must be followed by a single parenthesized expression" , false , c.position ());
7018
+ error (" '" + std::string{c} + " ' must be followed by a single parenthesized expression" , false , c.position ());
7016
7019
return {};
7017
7020
}
7018
7021
}
0 commit comments