Interface IDbgCmds

Context returned from adding a command to allow removal

Hierarchy

Properties

Properties

add: ((name, theCmd) => IDbgCmdCtx)

Type declaration

    • (name, theCmd): IDbgCmdCtx
    • Add or Replace the command to the current commands for the context

      Parameters

      • name: string

        The name to register this command as

      • theCmd: IDbgCmd

        The debug command

      Returns IDbgCmdCtx

      A debug context for the debug command

each: ((cb) => void)

Type declaration

    • (cb): void
    • For each key defined for the current context (and it's parent) call the provided callback function with each key name and it's value. This will only call the callback function once for each name even when the same name is presen in the current instance and it's parent.

      Parameters

      • cb: ((name, value) => void)

        The callback function to call

          • (name, value): void
          • Parameters

            Returns void

      Returns void

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

Type declaration

    • (cmdLine, cmdContext?): any
    • Execute another function from the current function

      Parameters

      • cmdLine: string

        The full command line to execute

      • Optional cmdContext: DbgContextValues

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

      Returns any

get: ((name, dfValue?) => IDbgCmdCtx)

Type declaration

    • (name, dfValue?): IDbgCmdCtx
    • Return the named context value from this instance or it's parent if present.

      Parameters

      • name: string

        The name of the value to return

      • Optional dfValue: IDbgCmdCtx

        If the named values does not exist in this instance or it's parent then return this value. The default will not be returned even if the value for the key is undefined or null.

      Returns IDbgCmdCtx

      The value contained in the context or the default

has: ((name) => boolean)

Type declaration

    • (name): boolean
    • Return whether the named context value is available from this instance ir it's parent.

      Parameters

      • name: string

        The name of the value to check if it's available

      Returns boolean

      true if it's present otherwise false

Generated using TypeDoc