mirror of
https://codeberg.org/ProgramSnail/lang.git
synced 2025-12-07 15:38:49 +00:00
16 lines
411 B
C++
16 lines
411 B
C++
#pragma once
|
|
|
|
#include "doc_nodes.hpp"
|
|
#include "tree_sitter_wrapper.hpp"
|
|
|
|
#include <unordered_set>
|
|
#include <vector>
|
|
|
|
namespace builders {
|
|
|
|
nodes::SymbolDocs build_symbol_docs(
|
|
std::optional<parser::ParseTree::Node> description_parser_node,
|
|
const std::vector<parser::ParseTree::Node> &annotation_parser_nodes = {},
|
|
const std::unordered_set<std::string> &annotations = {});
|
|
|
|
} // namespace builders
|