summaryrefslogtreecommitdiff
path: root/Userland/Applications/Debugger/main.cpp
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2022-12-04 18:02:33 +0000
committerAndreas Kling <kling@serenityos.org>2022-12-06 08:54:33 +0100
commit6e19ab2bbce0b113b628e6f8e9b5c0640053933e (patch)
tree372d21b2f5dcff112f5d0089559c6af5798680d4 /Userland/Applications/Debugger/main.cpp
parentf74251606d74b504a1379ebb893fdb5529054ea5 (diff)
downloadserenity-6e19ab2bbce0b113b628e6f8e9b5c0640053933e.zip
AK+Everywhere: Rename String to DeprecatedString
We have a new, improved string type coming up in AK (OOM aware, no null state), and while it's going to use UTF-8, the name UTF8String is a mouthful - so let's free up the String name by renaming the existing class. Making the old one have an annoying name will hopefully also help with quick adoption :^)
Diffstat (limited to 'Userland/Applications/Debugger/main.cpp')
-rw-r--r--Userland/Applications/Debugger/main.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/Userland/Applications/Debugger/main.cpp b/Userland/Applications/Debugger/main.cpp
index 2358193643..47c511f57e 100644
--- a/Userland/Applications/Debugger/main.cpp
+++ b/Userland/Applications/Debugger/main.cpp
@@ -57,7 +57,7 @@ static void handle_print_registers(PtraceRegisters const& regs)
#endif
}
-static bool handle_disassemble_command(String const& command, FlatPtr first_instruction)
+static bool handle_disassemble_command(DeprecatedString const& command, FlatPtr first_instruction)
{
auto parts = command.split(' ');
size_t number_of_instructions_to_disassemble = 5;
@@ -104,7 +104,7 @@ static bool handle_backtrace_command(PtraceRegisters const& regs)
while (g_debug_session->peek(eip_val).has_value() && g_debug_session->peek(ebp_val).has_value()) {
auto eip_symbol = g_debug_session->symbolicate(eip_val);
auto source_position = g_debug_session->get_source_position(eip_val);
- String symbol_location = (eip_symbol.has_value() && eip_symbol->symbol != "") ? eip_symbol->symbol : "???";
+ DeprecatedString symbol_location = (eip_symbol.has_value() && eip_symbol->symbol != "") ? eip_symbol->symbol : "???";
if (source_position.has_value()) {
outln("{:p} in {} ({}:{})", eip_val, symbol_location, source_position->file_path, source_position->line_number);
} else {
@@ -127,7 +127,7 @@ static bool insert_breakpoint_at_address(FlatPtr address)
return g_debug_session->insert_breakpoint(address);
}
-static bool insert_breakpoint_at_source_position(String const& file, size_t line)
+static bool insert_breakpoint_at_source_position(DeprecatedString const& file, size_t line)
{
auto result = g_debug_session->insert_breakpoint(file, line);
if (!result.has_value()) {
@@ -138,7 +138,7 @@ static bool insert_breakpoint_at_source_position(String const& file, size_t line
return true;
}
-static bool insert_breakpoint_at_symbol(String const& symbol)
+static bool insert_breakpoint_at_symbol(DeprecatedString const& symbol)
{
auto result = g_debug_session->insert_breakpoint(symbol);
if (!result.has_value()) {
@@ -149,7 +149,7 @@ static bool insert_breakpoint_at_symbol(String const& symbol)
return true;
}
-static bool handle_breakpoint_command(String const& command)
+static bool handle_breakpoint_command(DeprecatedString const& command)
{
auto parts = command.split(' ');
if (parts.size() != 2)
@@ -176,7 +176,7 @@ static bool handle_breakpoint_command(String const& command)
return insert_breakpoint_at_symbol(argument);
}
-static bool handle_examine_command(String const& command)
+static bool handle_examine_command(DeprecatedString const& command)
{
auto parts = command.split(' ');
if (parts.size() != 2)