LibJS: Use correct MarkedValueList append method

This commit is contained in:
Matthew Olsson 2020-07-02 15:23:42 -07:00 committed by Andreas Kling
commit 21064a1883
Notes: sideshowbarker 2024-07-19 05:13:26 +09:00
3 changed files with 32 additions and 32 deletions

View file

@ -64,7 +64,7 @@ public:
if (!m_setter)
return;
MarkedValueList arguments(interpreter().heap());
arguments.values().append(setter_value);
arguments.append(setter_value);
interpreter().call(*m_setter, this_value, move(arguments));
}