Implement runtime things of class field

Signed-off-by: Seonghyun Kim <sh8281.kim@samsung.com>
This commit is contained in:
Seonghyun Kim 2021-01-20 16:23:44 +09:00 committed by Hyukwoo Park
commit dac08ab369
16 changed files with 352 additions and 226 deletions

View file

@ -0,0 +1,53 @@
/*
* Copyright (c) 2021-present Samsung Electronics Co., Ltd
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
* USA
*/
#ifndef __EscargotScriptVirtualArrowFunctionObject__
#define __EscargotScriptVirtualArrowFunctionObject__
#include "runtime/ScriptFunctionObject.h"
namespace Escargot {
class ScriptVirtualArrowFunctionObject : public ScriptFunctionObject {
public:
ScriptVirtualArrowFunctionObject(ExecutionState& state, Object* proto, InterpretedCodeBlock* codeBlock, LexicalEnvironment* outerEnvironment)
: ScriptFunctionObject(state, proto, codeBlock, outerEnvironment, false, codeBlock->isGenerator(), codeBlock->isAsync())
{
}
virtual bool isScriptVirtualArrowFunctionObject() const override
{
return true;
}
friend class FunctionObjectProcessCallGenerator;
Value call(ExecutionState& state, const Value& thisValue);
virtual Value call(ExecutionState& state, const Value& thisValue, const size_t argc, NULLABLE Value* argv) override;
virtual Value construct(ExecutionState& state, const size_t argc, NULLABLE Value* argv, Object* newTarget) override;
bool isConstructor() const override
{
return false;
}
private:
};
} // namespace Escargot
#endif