@nevware21/ts-debug
    Preparing search index...

    Interface IDbgCmdContext

    The command context provided by the runtime when executed.

    interface IDbgCmdContext {
        dbg: IDbg;
        exec: (cmdLine: string, cmdContext?: DbgContextValues) => any;
        log: IDbgLog;
        usr: IDbgUsrCtx;
    }
    Index

    Properties

    Properties

    dbg: IDbg

    The current IDbg

    exec: (cmdLine: string, cmdContext?: DbgContextValues) => any

    Execute another function from the current function

    Type Declaration

      • (cmdLine: string, cmdContext?: DbgContextValues): any
      • Parameters

        • cmdLine: string

          The full command line to execute

        • OptionalcmdContext: DbgContextValues

          Additional context variables to include in the scope of executing the command.

        Returns any

    log: IDbgLog

    Access to the logging functions

    Provides access to the current context variables