Parse cpp_using_directive/declaration
Both of them now also don't have a name() anymore as it was inconsistent with get_full_name().
This commit is contained in:
parent
45e9e5305b
commit
087b9583ff
7 changed files with 176 additions and 22 deletions
|
|
@ -43,12 +43,22 @@ cpp_entity_kind cpp_namespace_alias::do_get_entity_kind() const noexcept
|
|||
return kind();
|
||||
}
|
||||
|
||||
cpp_entity_kind cpp_using_directive::do_get_entity_kind() const noexcept
|
||||
cpp_entity_kind cpp_using_directive::kind() noexcept
|
||||
{
|
||||
return cpp_entity_kind::using_directive_t;
|
||||
}
|
||||
|
||||
cpp_entity_kind cpp_using_declaration::do_get_entity_kind() const noexcept
|
||||
cpp_entity_kind cpp_using_directive::do_get_entity_kind() const noexcept
|
||||
{
|
||||
return kind();
|
||||
}
|
||||
|
||||
cpp_entity_kind cpp_using_declaration::kind() noexcept
|
||||
{
|
||||
return cpp_entity_kind::using_declaration_t;
|
||||
}
|
||||
|
||||
cpp_entity_kind cpp_using_declaration::do_get_entity_kind() const noexcept
|
||||
{
|
||||
return kind();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue