2020-03-07 19:42:11 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/String.h>
|
2020-03-16 14:20:30 +01:00
|
|
|
#include <LibJS/Runtime/Object.h>
|
2020-03-07 19:42:11 +01:00
|
|
|
|
|
|
|
namespace JS {
|
|
|
|
|
|
|
|
class Function : public Object {
|
2020-06-21 15:14:02 +02:00
|
|
|
JS_OBJECT(Function, Object);
|
|
|
|
|
2020-03-07 19:42:11 +01:00
|
|
|
public:
|
2020-06-08 13:31:21 -05:00
|
|
|
enum class ConstructorKind {
|
|
|
|
Base,
|
|
|
|
Derived,
|
|
|
|
};
|
|
|
|
|
2020-03-07 19:42:11 +01:00
|
|
|
virtual ~Function();
|
2020-07-22 17:50:18 +02:00
|
|
|
virtual void initialize(GlobalObject&) override { }
|
2020-03-07 19:42:11 +01:00
|
|
|
|
2020-09-27 17:24:14 +02:00
|
|
|
virtual Value call() = 0;
|
2020-09-27 18:45:21 +02:00
|
|
|
virtual Value construct(Function& new_target) = 0;
|
2020-04-11 12:56:20 +01:00
|
|
|
virtual const FlyString& name() const = 0;
|
2020-04-15 21:58:22 +02:00
|
|
|
virtual LexicalEnvironment* create_environment() = 0;
|
2020-03-07 19:42:11 +01:00
|
|
|
|
2020-04-19 14:42:00 -05:00
|
|
|
virtual void visit_children(Visitor&) override;
|
|
|
|
|
2020-06-01 16:58:54 +03:00
|
|
|
virtual bool is_script_function() const { return false; }
|
|
|
|
|
2020-04-19 15:03:02 -05:00
|
|
|
BoundFunction* bind(Value bound_this_value, Vector<Value> arguments);
|
|
|
|
|
2020-06-08 13:31:21 -05:00
|
|
|
Value bound_this() const { return m_bound_this; }
|
|
|
|
|
|
|
|
const Vector<Value>& bound_arguments() const { return m_bound_arguments; }
|
|
|
|
|
|
|
|
Value home_object() const { return m_home_object; }
|
|
|
|
void set_home_object(Value home_object) { m_home_object = home_object; }
|
2020-04-19 14:42:00 -05:00
|
|
|
|
2020-06-08 13:31:21 -05:00
|
|
|
ConstructorKind constructor_kind() const { return m_constructor_kind; };
|
|
|
|
void set_constructor_kind(ConstructorKind constructor_kind) { m_constructor_kind = constructor_kind; }
|
2020-04-19 14:42:00 -05:00
|
|
|
|
2020-03-07 19:42:11 +01:00
|
|
|
protected:
|
2020-04-17 19:59:32 +02:00
|
|
|
explicit Function(Object& prototype);
|
2020-05-29 22:42:05 -05:00
|
|
|
Function(Object& prototype, Value bound_this, Vector<Value> bound_arguments);
|
2020-03-07 19:42:11 +01:00
|
|
|
|
|
|
|
private:
|
2020-06-25 14:49:56 -07:00
|
|
|
virtual bool is_function() const override { return true; }
|
2020-04-29 12:41:58 +02:00
|
|
|
Value m_bound_this;
|
2020-04-19 14:42:00 -05:00
|
|
|
Vector<Value> m_bound_arguments;
|
2020-06-08 13:31:21 -05:00
|
|
|
Value m_home_object;
|
|
|
|
ConstructorKind m_constructor_kind = ConstructorKind::Base;
|
2020-03-07 19:42:11 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|