1425bb815Sopenharmony_ci 2425bb815Sopenharmony_ci/* 3425bb815Sopenharmony_ci * Copyright (c) Huawei Technologies Co., Ltd. 2020-2020. All rights reserved. 4425bb815Sopenharmony_ci * Description: add debug utils. 5425bb815Sopenharmony_ci * Create: 2020/11/20 6425bb815Sopenharmony_ci */ 7425bb815Sopenharmony_ci 8425bb815Sopenharmony_ci#ifndef DEBUG_UTILS_H 9425bb815Sopenharmony_ci#define DEBUG_UTILS_H 10425bb815Sopenharmony_ci 11425bb815Sopenharmony_ci#include "ecma-globals.h" 12425bb815Sopenharmony_ci#include "ecma-helpers.h" 13425bb815Sopenharmony_ci#include "jerryscript-core.h" 14425bb815Sopenharmony_ci 15425bb815Sopenharmony_civoid PrintObjectValueProperties(ecma_value_t value); 16425bb815Sopenharmony_civoid PrintObjectProperties(ecma_object_t* object); 17425bb815Sopenharmony_civoid PrintString(ecma_string_t* str); 18425bb815Sopenharmony_ci 19425bb815Sopenharmony_ci#endif 20