mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 07:54:58 +00:00

This moves all code comprehension-related code to a new library, LibCodeComprehension. This also moves some types related to code comprehension tasks (such as autocomplete, find declaration) out of LibGUI and into LibCodeComprehension.
36 lines
743 B
C++
36 lines
743 B
C++
/*
|
|
* Copyright (c) 2021, Federico Guerinoni <guerinoni.federico@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Function.h>
|
|
#include <AK/HashMap.h>
|
|
#include <AK/Noncopyable.h>
|
|
#include <AK/String.h>
|
|
#include <LibCpp/Parser.h>
|
|
|
|
namespace HackStudio {
|
|
|
|
class ToDoEntries {
|
|
AK_MAKE_NONCOPYABLE(ToDoEntries);
|
|
|
|
public:
|
|
static ToDoEntries& the();
|
|
|
|
void set_entries(String const& filename, Vector<CodeComprehension::TodoEntry> const&& entries);
|
|
|
|
Vector<CodeComprehension::TodoEntry> get_entries();
|
|
|
|
void clear_entries();
|
|
|
|
Function<void()> on_update = nullptr;
|
|
|
|
private:
|
|
ToDoEntries() = default;
|
|
HashMap<String, Vector<CodeComprehension::TodoEntry>> m_document_to_entries;
|
|
};
|
|
|
|
}
|