1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:27:34 +00:00

TextEditor: Replace DeprecatedString for String

This commit is contained in:
Fausto Tommasi 2023-02-14 19:01:31 -06:00 committed by Sam Atkins
parent a24c49c18c
commit 97398eb568
3 changed files with 21 additions and 17 deletions

View file

@ -10,14 +10,16 @@
namespace TextEditor {
FileArgument::FileArgument(DeprecatedString file_argument)
FileArgument::FileArgument(String file_argument)
{
m_line = {};
m_column = {};
// A file doesn't exist with the full specified name, maybe the user entered line/column coordinates?
// A file doesn't exist with the full specified name, maybe the user entered
// line/column coordinates?
Regex<PosixExtended> re("^(.+?)(?::([0-9]+))?(?::([0-9]+))?$");
RegexResult result = match(file_argument, re, PosixFlags::Global | PosixFlags::Multiline | PosixFlags::Ungreedy);
RegexResult result = match(file_argument, re,
PosixFlags::Global | PosixFlags::Multiline | PosixFlags::Ungreedy);
auto& groups = result.capture_group_matches.at(0);
// Match 0 group 0: file name
@ -25,9 +27,9 @@ FileArgument::FileArgument(DeprecatedString file_argument)
// Match 0 group 2: column number
if (groups.size() > 2) {
// Both a line and column number were specified.
auto filename = groups.at(0).view.to_deprecated_string();
auto initial_line_number = groups.at(1).view.to_deprecated_string().to_int();
auto initial_column_number = groups.at(2).view.to_deprecated_string().to_int();
auto filename = groups.at(0).view.to_string().release_value_but_fixme_should_propagate_errors();
auto initial_line_number = groups.at(1).view.to_string().release_value_but_fixme_should_propagate_errors().to_number<int>();
auto initial_column_number = groups.at(2).view.to_string().release_value_but_fixme_should_propagate_errors().to_number<int>();
m_filename = filename;
if (initial_line_number.has_value() && initial_line_number.value() > 0)
@ -36,15 +38,16 @@ FileArgument::FileArgument(DeprecatedString file_argument)
m_column = initial_column_number.value();
} else if (groups.size() == 2) {
// Only a line number was specified.
auto filename = groups.at(0).view.to_deprecated_string();
auto initial_line_number = groups.at(1).view.to_deprecated_string().to_int();
auto filename = groups.at(0).view.to_string().release_value_but_fixme_should_propagate_errors();
auto initial_line_number = groups.at(1).view.to_string().release_value_but_fixme_should_propagate_errors().to_number<int>();
m_filename = filename;
if (initial_line_number.has_value() && initial_line_number.value() > 0)
m_line = initial_line_number.value();
} else {
// A colon was found at the end of the file name but no values were found after it.
m_filename = groups.at(0).view.to_deprecated_string();
// A colon was found at the end of the file name but no values were found
// after it.
m_filename = groups.at(0).view.to_string().release_value_but_fixme_should_propagate_errors();
}
}
}