1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-30 10:12:07 +00:00

LibJS: Add Object::put_native_function() for convenience

This makes it a little bit nicer to add native function properties
to JavaScript objects.

Thanks to Sergey for suggesting it! :^)
This commit is contained in:
Andreas Kling 2020-03-13 11:06:32 +01:00
parent 6089d6566b
commit 9f38f4dbfb
5 changed files with 16 additions and 7 deletions

View file

@ -37,7 +37,7 @@ namespace JS {
Interpreter::Interpreter()
: m_heap(*this)
{
m_global_object = heap().allocate<GlobalObject>(heap());
m_global_object = heap().allocate<GlobalObject>();
}
Interpreter::~Interpreter()