Bladeren bron

Add updateCell

Jeremy Tuloup 5 jaren geleden
bovenliggende
commit
c6400b5e06
1 gewijzigde bestanden met toevoegingen van 12 en 0 verwijderingen
  1. 12 0
      src/session.ts

+ 12 - 0
src/session.ts

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