doc builders (no annotation check support)

This commit is contained in:
ProgramSnail 2023-07-20 22:21:51 +03:00
parent 696a9c3a1a
commit 6682e0beb1
5 changed files with 76 additions and 20 deletions

14
include/doc_builders.hpp Normal file
View file

@ -0,0 +1,14 @@
#pragma once
#include "doc_nodes.hpp"
#include "tree_sitter_wrapper.hpp"
#include <vector>
namespace builders {
nodes::SymbolDocs buildSymbolDocs(
parser::ParseTree::Node description_parser_node,
const std::vector<parser::ParseTree::Node> &annotation_parser_nodes);
} // namespace builders