summaryrefslogtreecommitdiff
path: root/Userland/Applications/Spreadsheet/Workbook.cpp
diff options
context:
space:
mode:
authorTimothy Flynn <trflynn89@pm.me>2023-01-28 13:39:44 -0500
committerLinus Groh <mail@linusgroh.de>2023-01-29 00:02:45 +0000
commitb75b7f0c0d6980e474f4aad910c6b7d45c876518 (patch)
tree2907bdea34ff11105129d1d28c8a90118c52feb6 /Userland/Applications/Spreadsheet/Workbook.cpp
parent109b190a19e55f407521de14cd1f984ae61d77bf (diff)
downloadserenity-b75b7f0c0d6980e474f4aad910c6b7d45c876518.zip
LibJS+Everywhere: Propagate Cell::initialize errors from Heap::allocate
Callers that are already in a fallible context will now TRY to allocate cells. Callers in infallible contexts get a FIXME.
Diffstat (limited to 'Userland/Applications/Spreadsheet/Workbook.cpp')
-rw-r--r--Userland/Applications/Spreadsheet/Workbook.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/Spreadsheet/Workbook.cpp b/Userland/Applications/Spreadsheet/Workbook.cpp
index bc426b2a12..16c0ba407c 100644
--- a/Userland/Applications/Spreadsheet/Workbook.cpp
+++ b/Userland/Applications/Spreadsheet/Workbook.cpp
@@ -27,7 +27,7 @@ Workbook::Workbook(NonnullRefPtrVector<Sheet>&& sheets, GUI::Window& parent_wind
, m_main_execution_context(m_vm->heap())
, m_parent_window(parent_window)
{
- m_workbook_object = m_vm->heap().allocate<WorkbookObject>(m_interpreter->realm(), m_interpreter->realm(), *this);
+ m_workbook_object = m_vm->heap().allocate<WorkbookObject>(m_interpreter->realm(), m_interpreter->realm(), *this).release_allocated_value_but_fixme_should_propagate_errors();
m_interpreter->realm().global_object().define_direct_property("workbook", workbook_object(), JS::default_attributes);
m_main_execution_context.current_node = nullptr;