summaryrefslogtreecommitdiff
path: root/Userland/DevTools/HackStudio/LanguageServers/FileDB.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/DevTools/HackStudio/LanguageServers/FileDB.h')
-rw-r--r--Userland/DevTools/HackStudio/LanguageServers/FileDB.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/Userland/DevTools/HackStudio/LanguageServers/FileDB.h b/Userland/DevTools/HackStudio/LanguageServers/FileDB.h
index 3e744604fb..c8d64b2182 100644
--- a/Userland/DevTools/HackStudio/LanguageServers/FileDB.h
+++ b/Userland/DevTools/HackStudio/LanguageServers/FileDB.h
@@ -15,26 +15,26 @@ namespace LanguageServers {
class FileDB final {
public:
- RefPtr<const GUI::TextDocument> get(const String& filename) const;
- RefPtr<GUI::TextDocument> get(const String& filename);
- RefPtr<const GUI::TextDocument> get_or_create_from_filesystem(const String& filename) const;
- RefPtr<GUI::TextDocument> get_or_create_from_filesystem(const String& filename);
- bool add(const String& filename, int fd);
- bool add(const String& filename, const String& content);
+ RefPtr<const GUI::TextDocument> get(String const& filename) const;
+ RefPtr<GUI::TextDocument> get(String const& filename);
+ RefPtr<const GUI::TextDocument> get_or_create_from_filesystem(String const& filename) const;
+ RefPtr<GUI::TextDocument> get_or_create_from_filesystem(String const& filename);
+ bool add(String const& filename, int fd);
+ bool add(String const& filename, String const& content);
- void set_project_root(const String& root_path) { m_project_root = root_path; }
- const String& project_root() const { return m_project_root; }
+ void set_project_root(String const& root_path) { m_project_root = root_path; }
+ String const& project_root() const { return m_project_root; }
- void on_file_edit_insert_text(const String& filename, const String& inserted_text, size_t start_line, size_t start_column);
- void on_file_edit_remove_text(const String& filename, size_t start_line, size_t start_column, size_t end_line, size_t end_column);
- String to_absolute_path(const String& filename) const;
- bool is_open(const String& filename) const;
+ void on_file_edit_insert_text(String const& filename, String const& inserted_text, size_t start_line, size_t start_column);
+ void on_file_edit_remove_text(String const& filename, size_t start_line, size_t start_column, size_t end_line, size_t end_column);
+ String to_absolute_path(String const& filename) const;
+ bool is_open(String const& filename) const;
private:
- RefPtr<GUI::TextDocument> create_from_filesystem(const String& filename) const;
+ RefPtr<GUI::TextDocument> create_from_filesystem(String const& filename) const;
RefPtr<GUI::TextDocument> create_from_fd(int fd) const;
RefPtr<GUI::TextDocument> create_from_file(Core::File&) const;
- static RefPtr<GUI::TextDocument> create_with_content(const String&);
+ static RefPtr<GUI::TextDocument> create_with_content(String const&);
private:
HashMap<String, NonnullRefPtr<GUI::TextDocument>> m_open_files;