1# HiDebug_JsStackFrame 2 3<!--Kit: Performance Analysis Kit--> 4<!--Subsystem: HiviewDFX--> 5<!--Owner: @hello_harmony; @yu_haoqiaida--> 6<!--SE: @kutcherzhou1--> 7<!--TSE: @gcw_KuLfPSbe--> 8 9## Overview 10 11Defines the JS stack frame content. 12 13**Since**: 20 14 15**Related module**: [HiDebug](capi-hidebug.md) 16 17**Header file**: [hidebug_type.h](capi-hidebug-type-h.md) 18 19## Summary 20 21### Member Variables 22 23| Name| Description| 24| -- | -- | 25| uint64_t relativePc | Relative PC address, which is the offset of the current PC relative to the start address of its mapping area (such as an executable file or shared library).| 26| int32_t line | Line number of the code corresponding to the current stack frame.| 27| int32_t column | Column number of the code corresponding to the current stack frame.| 28| const char* mapName | Name of the mapping area to which the current stack frame belongs.| 29| const char* functionName | Name of the function corresponding to the current stack frame.| 30| const char* url | URL of the code file corresponding to the current stack frame. It can be used to find the corresponding code file in the local path or on the remote server.| 31| const char* packageName | Name of the package to which the code corresponding to the current stack frame belongs.| 32