Arguments for CopyToGlobals request. This is an addition to the Debug Adaptor protocol to support copying variable from Locals() to Globals() during breakpoint.

interface ICopyToGlobalsArguments {
    dstVariableName: string;
    srcFrameId: number;
    srcVariableName: string;
}

Properties

dstVariableName: string
srcFrameId: number
srcVariableName: string