Parse cpp_member_function
This commit is contained in:
parent
39b5b01ae3
commit
85ca226117
6 changed files with 487 additions and 45 deletions
|
|
@ -8,11 +8,16 @@
|
|||
|
||||
using namespace cppast;
|
||||
|
||||
cpp_entity_kind cpp_member_function::do_get_entity_kind() const noexcept
|
||||
cpp_entity_kind cpp_member_function::kind() noexcept
|
||||
{
|
||||
return cpp_entity_kind::member_function_t;
|
||||
}
|
||||
|
||||
cpp_entity_kind cpp_member_function::do_get_entity_kind() const noexcept
|
||||
{
|
||||
return kind();
|
||||
}
|
||||
|
||||
cpp_entity_kind cpp_conversion_op::do_get_entity_kind() const noexcept
|
||||
{
|
||||
return cpp_entity_kind::conversion_op_t;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue