* Copyright (c) 2021 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef ECMASCRIPT_BUILTINS_BUILTINS_MAP_H
#define ECMASCRIPT_BUILTINS_BUILTINS_MAP_H
#include "ecmascript/base/builtins_base.h"
#include "ecmascript/ecma_runtime_call_info.h"
#define BUILTIN_MAP_PROTOTYPE_FUNCTIONS(V) \
\
V("clear", Clear, 0, MapClear) \
\
V("delete", Delete, 1, MapDelete) \
\
V("entries", Entries, 0, MapEntries) \
\
V("forEach", ForEach, 1, MapForEach) \
\
V("get", Get, 1, MapGet) \
\
V("has", Has, 1, MapHas) \
\
V("keys", Keys, 0, MapKeys) \
\
V("set", Set, 2, MapSet) \
\
V("values", Values, 0, MapValues)
namespace panda::ecmascript::builtins {
class BuiltinsMap : public base::BuiltinsBase {
public:
static JSTaggedValue MapConstructor(EcmaRuntimeCallInfo *argv);
static JSTaggedValue Species(EcmaRuntimeCallInfo *argv);
static JSTaggedValue Clear(EcmaRuntimeCallInfo *argv);
static JSTaggedValue Delete(EcmaRuntimeCallInfo *argv);
static JSTaggedValue Entries(EcmaRuntimeCallInfo *argv);
static JSTaggedValue ForEach(EcmaRuntimeCallInfo *argv);
static JSTaggedValue Get(EcmaRuntimeCallInfo *argv);
static JSTaggedValue Has(EcmaRuntimeCallInfo *argv);
static JSTaggedValue Keys(EcmaRuntimeCallInfo *argv);
static JSTaggedValue Set(EcmaRuntimeCallInfo *argv);
static JSTaggedValue GetSize(EcmaRuntimeCallInfo *argv);
static JSTaggedValue Values(EcmaRuntimeCallInfo *argv);
static JSTaggedValue AddEntriesFromIterable(JSThread *thread, const JSHandle<JSObject> &target,
const JSHandle<JSTaggedValue> &iterable,
const JSHandle<JSTaggedValue> &adder, ObjectFactory *factory);
static Span<const base::BuiltinFunctionEntry> GetMapPrototypeFunctions()
{
return Span<const base::BuiltinFunctionEntry>(MAP_PROTOTYPE_FUNCTIONS);
}
static size_t GetNumPrototypeInlinedProperties()
{
return GetMapPrototypeFunctions().Size() + 4;
}
private:
#define BUILTIN_MAP_FUNCTION_ENTRY(name, func, length, id) \
base::BuiltinFunctionEntry::Create(name, BuiltinsMap::func, length, BUILTINS_STUB_ID(id)),
static constexpr std::array MAP_PROTOTYPE_FUNCTIONS = {
BUILTIN_MAP_PROTOTYPE_FUNCTIONS(BUILTIN_MAP_FUNCTION_ENTRY)
};
#undef BUILTIN_MAP_FUNCTION_ENTRY
};
}
#endif