2021-09-04 08:06:49 +00:00
|
|
|
/*
|
2022-03-14 09:42:27 +00:00
|
|
|
* Copyright (c) 2021-2022 Huawei Device Co., Ltd.
|
2021-09-04 08:06:49 +00:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2021-09-07 14:24:16 +00:00
|
|
|
#ifndef ECMASCRIPT_JS_FORIN_ITERATOR_H
|
|
|
|
#define ECMASCRIPT_JS_FORIN_ITERATOR_H
|
2021-09-04 08:06:49 +00:00
|
|
|
|
|
|
|
#include <utility>
|
2022-07-23 10:54:34 +00:00
|
|
|
|
2022-07-23 10:33:33 +00:00
|
|
|
#include "ecmascript/js_object.h"
|
2021-09-04 08:06:49 +00:00
|
|
|
#include "ecmascript/js_tagged_value-inl.h"
|
|
|
|
#include "ecmascript/tagged_array-inl.h"
|
|
|
|
|
|
|
|
namespace panda::ecmascript {
|
|
|
|
class JSForInIterator : public JSObject {
|
|
|
|
public:
|
2021-12-17 09:18:10 +00:00
|
|
|
CAST_CHECK(JSForInIterator, IsForinIterator);
|
2021-09-04 08:06:49 +00:00
|
|
|
|
2023-09-28 09:02:15 +00:00
|
|
|
static JSTaggedValue NextInternal(JSThread *thread, const JSHandle<JSForInIterator> &it);
|
|
|
|
static JSTaggedValue NextInternalSlowpath(JSThread *thread, const JSHandle<JSForInIterator> &it);
|
2021-09-04 08:06:49 +00:00
|
|
|
|
|
|
|
static JSTaggedValue Next(EcmaRuntimeCallInfo *msg);
|
|
|
|
|
|
|
|
static constexpr size_t OBJECT_OFFSET = JSObject::SIZE;
|
2023-09-28 09:02:15 +00:00
|
|
|
ACCESSORS(Object, OBJECT_OFFSET, CACHED_HCLASS_OFFSET)
|
|
|
|
ACCESSORS(CachedHclass, CACHED_HCLASS_OFFSET, KEYS_OFFSET)
|
|
|
|
ACCESSORS(Keys, KEYS_OFFSET, INDEX_OFFSET)
|
|
|
|
ACCESSORS_PRIMITIVE_FIELD(Index, uint32_t, INDEX_OFFSET, LENGTH_OFFSET)
|
|
|
|
ACCESSORS_PRIMITIVE_FIELD(Length, uint32_t, LENGTH_OFFSET, LAST_OFFSET)
|
2022-01-25 10:05:12 +00:00
|
|
|
DEFINE_ALIGN_SIZE(LAST_OFFSET);
|
2021-09-04 08:06:49 +00:00
|
|
|
|
2023-09-28 09:02:15 +00:00
|
|
|
DECL_VISIT_OBJECT_FOR_JS_OBJECT(JSObject, OBJECT_OFFSET, INDEX_OFFSET)
|
2021-10-18 06:11:40 +00:00
|
|
|
DECL_DUMP()
|
2023-09-28 09:02:15 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
static bool IsEnumCacheValid(JSTaggedValue receiver, JSTaggedValue cachedHclass, EnumCacheKind kind);
|
|
|
|
static bool NeedCheckProperty(JSTaggedValue receiver);
|
|
|
|
static bool HasProperty(JSThread *thread, JSHandle<JSTaggedValue> receiver, JSHandle<JSTaggedValue> key);
|
2021-09-04 08:06:49 +00:00
|
|
|
};
|
|
|
|
} // namespace panda::ecmascript
|
|
|
|
|
2021-09-07 14:24:16 +00:00
|
|
|
#endif // ECMASCRIPT_JS_FORIN_ITERATOR_H
|