Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(parse): add _type-id_ production for type_of #1296

Merged
merged 1 commit into from
Oct 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion regression-tests/pure2-print.cpp2
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ outer: @print type = {
all: <Args...: type> (args...: Args) -> bool =
(... && args);

y: (_: decltype(0)) = { }
y: (_: type_of(0)) = { }

}

Expand Down
4 changes: 2 additions & 2 deletions regression-tests/test-results/pure2-print.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ CPP2_REQUIRES_ (cpp2::impl::cmp_greater_eq(sizeof...(Args),0u)) ;
public: template<typename ...Args> [[nodiscard]] static auto all(Args const& ...args) -> bool;

#line 103 "pure2-print.cpp2"
public: static auto y([[maybe_unused]] cpp2::impl::in<decltype(0)> unnamed_param_1) -> void;
public: static auto y([[maybe_unused]] cpp2::impl::in<CPP2_TYPEOF(0)> unnamed_param_1) -> void;
public: outer() = default;
public: outer(outer const&) = delete; /* No 'that' constructor, suppress copy */
public: auto operator=(outer const&) -> void = delete;
Expand Down Expand Up @@ -203,7 +203,7 @@ requires (cpp2::impl::cmp_greater_eq(sizeof...(Args),0u)) {
return (... && args); }

#line 103 "pure2-print.cpp2"
auto outer::y([[maybe_unused]] cpp2::impl::in<decltype(0)> unnamed_param_1) -> void{}
auto outer::y([[maybe_unused]] cpp2::impl::in<CPP2_TYPEOF(0)> unnamed_param_1) -> void{}

#line 107 "pure2-print.cpp2"
auto main() -> int{
Expand Down
2 changes: 1 addition & 1 deletion regression-tests/test-results/pure2-print.cpp2.output
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ outer:/* @print */ type =

all: <Args...: type, >(in args...: Args, ) -> move bool = (... && args);

y:(in _: decltype(0), ) =
y:(in _: type_of(0), ) =
{
}
}
Expand Down
23 changes: 13 additions & 10 deletions source/parse.h
Original file line number Diff line number Diff line change
Expand Up @@ -1389,7 +1389,7 @@ struct type_id_node
int dereference_cnt = {};
token const* suspicious_initialization = {};

enum active : u8 { empty=0, decltype_, qualified, unqualified, function, keyword };
enum active : u8 { empty=0, postfix, qualified, unqualified, function, keyword };
std::variant<
std::monostate,
std::unique_ptr<postfix_expression_node>,
Expand Down Expand Up @@ -1460,7 +1460,7 @@ struct type_id_node
switch (id.index()) {
break;case empty:
return {};
break;case decltype_:
break;case postfix:
return {};
break;case qualified:
return {};
Expand Down Expand Up @@ -1490,7 +1490,7 @@ struct type_id_node
for (auto q : pc_qualifiers) {
v.start(*q, depth+1);
}
try_visit<decltype_ >(id, v, depth);
try_visit<postfix >(id, v, depth);
try_visit<qualified >(id, v, depth);
try_visit<unqualified>(id, v, depth);
try_visit<function >(id, v, depth);
Expand Down Expand Up @@ -2825,8 +2825,8 @@ auto type_id_node::to_string() const
switch (id.index()) {
break;case empty:
ret += "_";
break;case decltype_:
ret += std::get<decltype_>(id)->to_string();
break;case postfix:
ret += std::get<postfix>(id)->to_string();
break;case qualified:
ret += std::get<qualified>(id)->to_string();
break;case unqualified:
Expand Down Expand Up @@ -5157,7 +5157,7 @@ auto pretty_print_visualize(type_id_node const& n, int indent)
}

if (n.id.index() == type_id_node::empty) { ret += "_"; }
ret += try_pretty_print_visualize<type_id_node::decltype_ >(n.id, indent);
ret += try_pretty_print_visualize<type_id_node::postfix >(n.id, indent);
ret += try_pretty_print_visualize<type_id_node::qualified >(n.id, indent);
ret += try_pretty_print_visualize<type_id_node::unqualified>(n.id, indent);
ret += try_pretty_print_visualize<type_id_node::function >(n.id, indent);
Expand Down Expand Up @@ -6941,6 +6941,7 @@ class parser


//G type-id:
//G type-qualifier-seq? 'type_of' '(' expression ')' is-type-constraint?
//G type-qualifier-seq? 'decltype' '(' expression ')' is-type-constraint?
//G type-qualifier-seq? qualified-id is-type-constraint?
//G type-qualifier-seq? unqualified-id is-type-constraint?
Expand Down Expand Up @@ -6985,11 +6986,13 @@ class parser
}

if (auto& c = curr();
c == "decltype"
c == "type_of"
|| c == "decltype"
)
{
if (
peek(1) && peek(1)->type() == lexeme::LeftParen
c == "decltype"
&& peek(1) && peek(1)->type() == lexeme::LeftParen
&& peek(2) && *peek(2) == "auto"
&& peek(3) && peek(3)->type() == lexeme::RightParen)
{
Expand All @@ -7008,11 +7011,11 @@ class parser
{
n->pos = id->position();
n->id = std::move(id);
assert (n->id.index() == type_id_node::decltype_);
assert (n->id.index() == type_id_node::postfix);
}
else
{
error("'decltype' must be followed by a single parenthesized expression", false, c.position());
error("'" + std::string{c} + "' must be followed by a single parenthesized expression", false, c.position());
return {};
}
}
Expand Down
2 changes: 1 addition & 1 deletion source/to_cpp1.h
Original file line number Diff line number Diff line change
Expand Up @@ -1939,7 +1939,7 @@ class cppfront
printer.print_cpp2("auto", pos);
}
else {
try_emit<type_id_node::decltype_ >(n.id);
try_emit<type_id_node::postfix >(n.id);
try_emit<type_id_node::unqualified>(n.id, 0, false);
try_emit<type_id_node::qualified >(n.id);
try_emit<type_id_node::keyword >(n.id);
Expand Down
Loading