2020-03-12 19:53:31 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-03-12 19:53:31 +01:00
|
|
|
*/
|
|
|
|
|
2020-04-17 19:59:32 +02:00
|
|
|
#include <LibJS/Runtime/GlobalObject.h>
|
2020-09-27 20:18:30 +02:00
|
|
|
#include <LibJS/Runtime/LexicalEnvironment.h>
|
2020-03-16 14:20:30 +01:00
|
|
|
#include <LibJS/Runtime/NativeFunction.h>
|
|
|
|
#include <LibJS/Runtime/Value.h>
|
2020-03-12 19:53:31 +01:00
|
|
|
|
|
|
|
namespace JS {
|
|
|
|
|
2020-09-27 18:36:49 +02:00
|
|
|
NativeFunction* NativeFunction::create(GlobalObject& global_object, const FlyString& name, AK::Function<Value(VM&, GlobalObject&)> function)
|
2020-04-17 19:59:32 +02:00
|
|
|
{
|
2020-06-20 15:40:48 +02:00
|
|
|
return global_object.heap().allocate<NativeFunction>(global_object, name, move(function), *global_object.function_prototype());
|
2020-04-17 19:59:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
NativeFunction::NativeFunction(Object& prototype)
|
|
|
|
: Function(prototype)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-09-27 18:36:49 +02:00
|
|
|
NativeFunction::NativeFunction(const FlyString& name, AK::Function<Value(VM&, GlobalObject&)> native_function, Object& prototype)
|
2020-04-17 19:59:32 +02:00
|
|
|
: Function(prototype)
|
|
|
|
, m_name(name)
|
2020-04-11 12:56:20 +01:00
|
|
|
, m_native_function(move(native_function))
|
2020-03-12 19:53:31 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-04-17 19:59:32 +02:00
|
|
|
NativeFunction::NativeFunction(const FlyString& name, Object& prototype)
|
|
|
|
: Function(prototype)
|
|
|
|
, m_name(name)
|
2020-04-13 01:07:31 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-03-12 19:53:31 +01:00
|
|
|
NativeFunction::~NativeFunction()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-09-27 17:24:14 +02:00
|
|
|
Value NativeFunction::call()
|
2020-03-13 10:08:52 +01:00
|
|
|
{
|
2020-09-27 18:36:49 +02:00
|
|
|
return m_native_function(vm(), global_object());
|
2020-03-13 10:08:52 +01:00
|
|
|
}
|
|
|
|
|
2020-09-27 18:45:21 +02:00
|
|
|
Value NativeFunction::construct(Function&)
|
2020-04-01 18:31:24 +01:00
|
|
|
{
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2020-06-08 13:31:21 -05:00
|
|
|
LexicalEnvironment* NativeFunction::create_environment()
|
|
|
|
{
|
2020-09-27 20:07:25 +02:00
|
|
|
return heap().allocate<LexicalEnvironment>(global_object(), LexicalEnvironment::EnvironmentRecordType::Function);
|
2020-06-08 13:31:21 -05:00
|
|
|
}
|
|
|
|
|
2020-10-04 13:54:44 +02:00
|
|
|
bool NativeFunction::is_strict_mode() const
|
|
|
|
{
|
|
|
|
return vm().in_strict_mode();
|
|
|
|
}
|
|
|
|
|
2020-03-12 19:53:31 +01:00
|
|
|
}
|