Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/pptr/mod.ts>Protocol.Debugger.Scope

Headless Chrome Deno API
Latest
interface Protocol.Debugger.Scope
import { type Protocol } from "https://deno.land/x/pptr@1.2.0/mod.ts";
const { Scope } = Protocol.Debugger;

Scope description.

Properties

type:
| "global"
| "local"
| "with"
| "closure"
| "catch"
| "block"
| "script"
| "eval"
| "module"
| "wasm-expression-stack"

Scope type. (ScopeType enum)

Object representing the scope. For global and with scopes it represents the actual object; for the rest of the scopes, it is artificial transient object enumerating scope variables as its properties.

optional
name: string
optional
startLocation: Location

Location in the source code where scope starts

optional
endLocation: Location

Location in the source code where scope ends