HackStudio: Add option to inspect Coredump

This adds a --coredump <file> option to Hack Studio.

When used, Hack Studio will open the coredump and allow the user to
inspect it in the Debug tab.
This commit is contained in:
Itamar 2021-11-19 16:13:07 +02:00 committed by Linus Groh
commit 8316eb7306
Notes: sideshowbarker 2024-07-18 00:57:04 +09:00
8 changed files with 72 additions and 19 deletions

View file

@ -51,7 +51,7 @@ NonnullRefPtr<ProjectFile> Project::create_file(const String& path) const
return ProjectFile::construct_with_name(full_path);
}
String Project::to_absolute_path(const String& path) const
String Project::to_absolute_path(String const& path) const
{
if (LexicalPath { path }.is_absolute()) {
return path;