Add full_name() function

This commit is contained in:
Jonathan Müller 2017-01-21 22:59:38 +01:00
commit 0b88656cc2
5 changed files with 51 additions and 0 deletions

19
src/cpp_entity.cpp Normal file
View file

@ -0,0 +1,19 @@
// Copyright (C) 2017 Jonathan Müller <jonathanmueller.dev@gmail.com>
// This file is subject to the license terms in the LICENSE file
// found in the top-level directory of this distribution.
#include <cppast/cpp_entity.hpp>
using namespace cppast;
std::string cppast::full_name(const cpp_entity& e)
{
std::string scopes;
for (auto cur = e.parent(); cur; cur = cur.value().parent())
// prepend each scope, if there is any
type_safe::with(cur.value().scope_name(),
[&](const std::string& cur_scope) { scopes = cur_scope + "::" + scopes; });
return scopes + e.name();
}

View file

@ -17,3 +17,8 @@ cpp_entity_type cpp_enum::do_get_entity_type() const noexcept
{
return cpp_entity_type::enum_t;
}
type_safe::optional<std::string> cpp_enum::do_get_scope_name() const
{
return scoped_ ? type_safe::make_optional(name()) : type_safe::nullopt;
}