forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProxyCommands.ts
More file actions
31 lines (30 loc) · 2 KB
/
ProxyCommands.ts
File metadata and controls
31 lines (30 loc) · 2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
"use strict";
export class Commands {
public static ExitCommandBytes: Buffer = new Buffer("exit");
public static StepIntoCommandBytes: Buffer = new Buffer("stpi");
public static StepOutCommandBytes: Buffer = new Buffer("stpo");
public static StepOverCommandBytes: Buffer = new Buffer("stpv");
public static BreakAllCommandBytes: Buffer = new Buffer("brka");
public static SetBreakPointCommandBytes: Buffer = new Buffer("brkp");
public static SetBreakPointConditionCommandBytes: Buffer = new Buffer("brkc");
public static SetBreakPointPassCountCommandBytes: Buffer = new Buffer("bkpc");
public static GetBreakPointHitCountCommandBytes: Buffer = new Buffer("bkgh");
public static SetBreakPointHitCountCommandBytes: Buffer = new Buffer("bksh");
public static RemoveBreakPointCommandBytes: Buffer = new Buffer("brkr");
public static ResumeAllCommandBytes: Buffer = new Buffer("resa");
public static GetThreadFramesCommandBytes: Buffer = new Buffer("thrf");
public static ExecuteTextCommandBytes: Buffer = new Buffer("exec");
public static ResumeThreadCommandBytes: Buffer = new Buffer("rest");
public static AutoResumeThreadCommandBytes: Buffer = new Buffer("ares");
public static ClearSteppingCommandBytes: Buffer = new Buffer("clst");
public static SetLineNumberCommand: Buffer = new Buffer("setl");
public static GetChildrenCommandBytes: Buffer = new Buffer("chld");
public static DetachCommandBytes: Buffer = new Buffer("detc");
public static SetExceptionInfoCommandBytes: Buffer = new Buffer("sexi");
public static SetExceptionHandlerInfoCommandBytes: Buffer = new Buffer("sehi");
public static RemoveDjangoBreakPointCommandBytes: Buffer = new Buffer("bkdr");
public static AddDjangoBreakPointCommandBytes: Buffer = new Buffer("bkda");
public static ConnectReplCommandBytes: Buffer = new Buffer("crep");
public static DisconnectReplCommandBytes: Buffer = new Buffer("drep");
public static LastAckCommandBytes: Buffer = new Buffer("lack");
}