14 static tree_t *select_decl_imported(
tree_t *sema,
const size_t *tags,
size_t len,
const char *name,
tree_t **mod)
19 for (
size_t i = 0; i < len; i++)
37 tree_t *inner = select_decl_imported(sema, search.
tags, search.
count, name, &context);
38 *imported = (inner != context);
60 static bool is_public(
const tree_t *decl)
74 for (
size_t i = 0; i < len - 1; i++)
76 if (!
tree_is(ns, eTreeDeclModule))
82 ns = select_module(ns, search, segment, is_imported);
85 return tree_raise(node, sema->
reports, &kEvent_SymbolNotFound,
"namespace `%s` not found", segment);
94 CTASSERTF(sema != NULL && search != NULL,
"(sema = %p, search = %p)", (
void*)sema, (
void*)search);
97 bool is_imported =
false;
100 for (
size_t i = 0; i < len - 1; i++)
103 ns = select_module(ns, get_module_search(search), segment, &is_imported);
106 return tree_raise(node, sema->
reports, &kEvent_SymbolNotFound,
"namespace `%s` not found", segment);
114 return tree_raise(node, sema->
reports, &kEvent_SymbolNotFound,
"decl `%s` not found", name);
117 if (is_imported && !is_public(decl))
119 return tree_raise(node, sema->
reports, &kEvent_SymbolNotVisible,
"decl `%s` is not public", name);
127 bool is_imported =
false;
128 tree_t *ns = select_module(sema, get_module_search(search), mod, &is_imported);
131 return tree_raise(node, sema->
reports, &kEvent_SymbolNotFound,
"namespace `%s` not found", mod);
137 return tree_raise(node, sema->
reports, &kEvent_SymbolNotFound,
"decl `%s` not found", name);
140 if (is_imported && !is_public(decl))
142 return tree_raise(node, sema->
reports, &kEvent_SymbolNotVisible,
"decl `%s` is not public", name);
const tree_attribs_t * tree_get_attrib(const tree_t *self)
bool tree_is(const tree_t *self, tree_kind_t kind)
const char * tree_to_string(const tree_t *self)
#define CTASSERT(expr)
assert a condition, prints the condition as a message
#define CTASSERTF(expr,...)
assert a condition with a message and optional format arguments
tree_t * util_search_qualified(tree_t *sema, const decl_search_t *search, const node_t *node, const char *mod, const char *name)
search for a decl inside a module
CT_UTIL_API void * util_select_decl(tree_t *sema, search_t search, const char *name)
search for a declaration by name in a set of tags
tree_t * util_search_namespace(tree_t *sema, search_t search, const node_t *node, const vector_t *path, bool *is_imported)
search for a namespace given a path, ignoring the last element in the path
tree_t * util_search_path(tree_t *sema, const decl_search_t *search, const node_t *node, vector_t *path)
search for a decl given a path
CT_TREE_API void * tree_module_find(tree_t *sema, size_t tag, const char *name, tree_t **module)
search for a declaration in a module also returns the module that the declaration was found in
CT_TREE_API tree_t * tree_raise(const node_t *node, logger_t *reports, const diagnostic_t *diagnostic, const char *message,...)
CT_NODISCARD CT_PUREFN CT_STD_API void * vector_get(const vector_t *vector, size_t index)
get a value from a vector
CT_NODISCARD CT_PUREFN CT_STD_API void * vector_tail(const vector_t *vector)
get the last element of a vector
CT_NODISCARD CT_PUREFN CT_STD_API size_t vector_len(const vector_t *vector)
get the length of a vector
const size_t * module_tags
a position in a source file
tree_visibility_t visibility
the visibility of the declaration
a generic vector of pointers