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

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
parent 02debd8a6d
commit 21064a1883
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));
}