Skip to main content
Debugger.CallFrame - node__inspector.d.ts - Node documentation
interface Debugger.CallFrame

Usage in Deno

```typescript import { Debugger } from "node:node__inspector.d.ts"; ```
JavaScript call frame. Array of call frames form the call stack.

Properties

Call frame identifier. This identifier is only valid while the virtual machine is paused.
functionName: string
Name of the JavaScript function called on this call frame.
optional
functionLocation: Location | undefined
Location in the source code.
Location in the source code.
url: string
JavaScript script name or url.
Scope chain for this call frame.
this object for this call frame.
optional
returnValue: Runtime.RemoteObject | undefined
The value being returned, if the function is at return point.