1/*
2 * Copyright (c) 2023 Huawei Device Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 *     http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#ifndef ECMASCRIPT_JSPANDAFILE_CLASS_LITERAL_H
17#define ECMASCRIPT_JSPANDAFILE_CLASS_LITERAL_H
18
19#include "ecmascript/ecma_macros.h"
20#include "ecmascript/js_tagged_value.h"
21#include "ecmascript/mem/barriers.h"
22#include "ecmascript/mem/slots.h"
23#include "ecmascript/mem/visitor.h"
24
25namespace panda::ecmascript {
26class ClassLiteral : public TaggedObject {
27public:
28    CAST_CHECK(ClassLiteral, IsClassLiteral);
29
30    static constexpr size_t ARRAY_OFFSET = TaggedObjectSize();
31
32    ACCESSORS(Array, ARRAY_OFFSET, IS_AOT_USED_OFFSET);
33    ACCESSORS_PRIMITIVE_FIELD(IsAOTUsed, bool, IS_AOT_USED_OFFSET, LAST_OFFSET);
34
35    DEFINE_ALIGN_SIZE(LAST_OFFSET);
36    DECL_VISIT_OBJECT(ARRAY_OFFSET, IS_AOT_USED_OFFSET);
37    DECL_DUMP()
38};
39}  // namespace panda::ecmascript
40#endif  // ECMASCRIPT_JSPANDAFILE_CLASS_LITERAL_H