|
@@ -167,6 +167,16 @@ export namespace DebugSession {
|
|
client: IClientSession;
|
|
client: IClientSession;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ export interface IUpdateCellArguments {
|
|
|
|
+ cellId: number;
|
|
|
|
+ nextId: number;
|
|
|
|
+ code: string;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ export interface IUpdateCellResponse {
|
|
|
|
+ sourcePath: string;
|
|
|
|
+ }
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* Interface for all the debug requests types.
|
|
* Interface for all the debug requests types.
|
|
*/
|
|
*/
|
|
@@ -204,6 +214,7 @@ export namespace DebugSession {
|
|
terminate: DebugProtocol.TerminateArguments;
|
|
terminate: DebugProtocol.TerminateArguments;
|
|
terminateThreads: DebugProtocol.TerminateThreadsArguments;
|
|
terminateThreads: DebugProtocol.TerminateThreadsArguments;
|
|
threads: {};
|
|
threads: {};
|
|
|
|
+ updateCell: IUpdateCellArguments;
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -243,6 +254,7 @@ export namespace DebugSession {
|
|
terminate: DebugProtocol.TerminateResponse;
|
|
terminate: DebugProtocol.TerminateResponse;
|
|
terminateThreads: DebugProtocol.TerminateThreadsResponse;
|
|
terminateThreads: DebugProtocol.TerminateThreadsResponse;
|
|
threads: DebugProtocol.ThreadsResponse;
|
|
threads: DebugProtocol.ThreadsResponse;
|
|
|
|
+ updateCell: IUpdateCellResponse;
|
|
variables: DebugProtocol.VariablesResponse;
|
|
variables: DebugProtocol.VariablesResponse;
|
|
}
|
|
}
|
|
}
|
|
}
|