17std::shared_ptr<AST::ASTNode>
find_node_at_position(std::shared_ptr<AST::ASTNode> node, uint32_t line, uint32_t column);
39 const std::string& file,
42 std::shared_ptr<bpp::bpp_program> program
Manages a pool of bpp_program objects for efficient reuse and access.
Definition ProgramPool.h:37
std::shared_ptr< AST::ASTNode > find_node_at_position(std::shared_ptr< AST::ASTNode > node, uint32_t line, uint32_t column)
Definition resolve_entity.cpp:11
std::shared_ptr< bpp::bpp_entity > resolve_entity_at(const std::string &file, uint32_t line, uint32_t column, std::shared_ptr< bpp::bpp_program > program)
Resolves the entity referenced at the given line and column in the specified file.
Definition resolve_entity.cpp:42
std::string find_comments_for_entity(std::shared_ptr< bpp::bpp_entity > entity, ProgramPool *program_pool)
Finds comments ostensibly associated with the given entity's definition.
Definition resolve_entity.cpp:374