diff options
author | Linus Groh <mail@linusgroh.de> | 2021-10-12 17:49:01 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-10-13 09:55:10 +0100 |
commit | 4d8912a92b4378d34a06806b3126c8463bdbdcf5 (patch) | |
tree | 9d9ed3594c1512756d1c9337794a29a3d5965b5c /Userland/Applications/Spreadsheet | |
parent | 5d38cf497331ba9a533d2da64d91f7044b3ee87f (diff) | |
download | serenity-4d8912a92b4378d34a06806b3126c8463bdbdcf5.zip |
LibJS: Convert to_string() to ThrowCompletionOr
Also update get_function_name() to use ThrowCompletionOr, but this is
not a standard AO and should be refactored out of existence eventually.
Diffstat (limited to 'Userland/Applications/Spreadsheet')
-rw-r--r-- | Userland/Applications/Spreadsheet/SpreadsheetModel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/Spreadsheet/SpreadsheetModel.cpp b/Userland/Applications/Spreadsheet/SpreadsheetModel.cpp index 49e7e5bf04..986b992148 100644 --- a/Userland/Applications/Spreadsheet/SpreadsheetModel.cpp +++ b/Userland/Applications/Spreadsheet/SpreadsheetModel.cpp @@ -40,7 +40,7 @@ GUI::Variant SheetModel::data(const GUI::ModelIndex& index, GUI::ModelRole role) return builder.to_string(); } } - auto error = value.to_string(cell->sheet().global_object()); + auto error = value.to_string_without_side_effects(); // This is annoying, but whatever. cell->sheet().interpreter().vm().clear_exception(); |