Usage in Deno
import { Runtime } from "node:inspector/promises";
expression: string
      
    Expression to evaluate.
objectGroup: string | undefined
      
    Symbolic group name that can be used to release multiple objects.
includeCommandLineAPI: boolean | undefined
      
    Determines whether Command Line API should be available during the evaluation.
silent: boolean | undefined
      
    In silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides <code>setPauseOnException</code> state.
contextId: ExecutionContextId | undefined
      
    Specifies in which execution context to perform evaluation. If the parameter is omitted the evaluation will be performed in the context of the inspected page.
returnByValue: boolean | undefined
      
    Whether the result is expected to be a JSON object that should be sent by value.
generatePreview: boolean | undefined
      
    Whether preview should be generated for the result.
userGesture: boolean | undefined
      
    Whether execution should be treated as initiated by user in the UI.
awaitPromise: boolean | undefined
      
    Whether execution should <code>await</code> for resulting value and return once awaited promise is resolved.