1
2/*
3 * Copyright (c) Huawei Technologies Co., Ltd. 2020-2020. All rights reserved.
4 * Description: add debug utils.
5 * Create: 2020/11/20
6 */
7
8#ifndef DEBUG_UTILS_H
9#define DEBUG_UTILS_H
10
11#include "ecma-globals.h"
12#include "ecma-helpers.h"
13#include "jerryscript-core.h"
14
15void PrintObjectValueProperties(ecma_value_t value);
16void PrintObjectProperties(ecma_object_t* object);
17void PrintString(ecma_string_t* str);
18
19#endif
20