本文整理汇总了TypeScript中vscode-debugadapter.DebugSession类的典型用法代码示例。如果您正苦于以下问题:TypeScript DebugSession类的具体用法?TypeScript DebugSession怎么用?TypeScript DebugSession使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了DebugSession类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: log
return this.sendErrorResponse(response, 2010, 'Unable to halt execution: "{e}"', { e: err.toString() });
}
log(state);
this.sendResponse(response);
log('PauseResponse');
});
}
protected evaluateRequest(response: DebugProtocol.EvaluateResponse, args: DebugProtocol.EvaluateArguments): void {
log('EvaluateRequest');
let evalSymbolArgs = {
symbol: args.expression,
scope: {
goroutineID: this.debugState.currentGoroutine.id,
frame: args.frameId
}
};
this.delve.call<DebugVariable>('EvalSymbol', [evalSymbolArgs], (err, variable) => {
if (err) {
logError('Failed to eval expression: ', JSON.stringify(evalSymbolArgs, null, ' '));
return this.sendErrorResponse(response, 2009, 'Unable to eval expression: "{e}"', { e: err.toString() });
}
response.body = this.convertDebugVariableToProtocolVariable(variable, 0);
this.sendResponse(response);
log('EvaluateResponse');
});
}
}
DebugSession.run(GoDebugSession);
示例2: attachRequest
this.started = true;
if (this.crashed)
this.handlePause(undefined);
});
});
}
}
protected attachRequest(response: DebugProtocol.AttachResponse, args: AttachRequestArguments): void {
this.miDebugger = new MI2_LLDB(args.lldbmipath || "lldb-mi", [], args.debugger_args, args.env);
this.initDebugger();
this.quit = false;
this.attached = true;
this.needContinue = true;
this.isSSH = false;
this.debugReady = false;
this.setValuesFormattingMode(args.valuesFormatting);
this.miDebugger.printCalls = !!args.printCalls;
this.miDebugger.debugOutput = !!args.showDevDebugOutput;
this.miDebugger.attach(args.cwd, args.executable, args.target).then(() => {
if (args.autorun)
args.autorun.forEach(command => {
this.miDebugger.sendUserInput(command);
});
this.sendResponse(response);
});
}
}
DebugSession.run(LLDBDebugSession);
示例3:
'use strict';
import { DebugSession } from "vscode-debugadapter";
import { DartDebugSession } from "./dart_debug_impl";
DebugSession.run(DartDebugSession);
示例4: continueRequest
console.log(args);
this.sendResponse(response);
}
protected continueRequest(response: DebugProtocol.ContinueResponse, args: DebugProtocol.ContinueArguments): void {
console.log(args);
this.sendResponse(response);
// no more lines: run to end
this.sendEvent(new TerminatedEvent());
}
protected nextRequest(response: DebugProtocol.NextResponse, args: DebugProtocol.NextArguments): void {
console.log(args);
this.sendResponse(response);
// no more lines: run to end
this.sendEvent(new TerminatedEvent());
}
protected stepBackRequest(response: DebugProtocol.StepBackResponse, args: DebugProtocol.StepBackArguments): void {
console.log(args);
this.sendResponse(response);
}
protected evaluateRequest(response: DebugProtocol.EvaluateResponse, args: DebugProtocol.EvaluateArguments): void {
console.log(args);
this.sendResponse(response);
}
}
DebugSession.run(C4EarthDebugSession);
示例5: MI2
this.miDebugger = new MI2(args.gdbpath || "gdb", ["-q", "--interpreter=mi2"]);
this.initDebugger();
this.quit = false;
this.attached = !args.remote;
this.needContinue = true;
this.isSSH = false;
this.debugReady = false;
this.miDebugger.printCalls = !!args.printCalls;
if (args.remote) {
this.miDebugger.connect(args.cwd, args.executable, args.target).then(() => {
if (args.autorun)
args.autorun.forEach(command => {
this.miDebugger.sendUserInput(command);
});
this.sendResponse(response);
});
}
else {
this.miDebugger.attach(args.cwd, args.executable, args.target).then(() => {
if (args.autorun)
args.autorun.forEach(command => {
this.miDebugger.sendUserInput(command);
});
this.sendResponse(response);
});
}
}
}
DebugSession.run(GDBDebugSession);
示例6: nextRequest
this.sendResponse(response);
}
protected nextRequest(response: DebugProtocol.NextResponse,
args: DebugProtocol.NextArguments): void {
this.sendStep("stepOver", response, args);
}
protected continueRequest(response: DebugProtocol.ContinueResponse,
args: DebugProtocol.ContinueArguments): void {
this.sendStep("resume", response, args);
}
protected stepInRequest(response: DebugProtocol.StepInResponse,
args: DebugProtocol.StepInArguments): void {
this.sendStep("stepInto", response, args);
}
protected stepOutRequest(response: DebugProtocol.StepOutResponse,
args: DebugProtocol.StepOutArguments): void {
this.sendStep("return", response, args);
}
protected pauseRequest(response: DebugProtocol.PauseResponse,
args: DebugProtocol.PauseArguments): void {
this.sendStep("stop", response, args);
}
}
DebugSession.run(SomDebugSession);
示例7:
import { DebugSession } from "vscode-debugadapter";
import { DartTestDebugSession } from "./dart_test_debug_impl";
DebugSession.run(DartTestDebugSession);
示例8:
import { DebugSession } from "vscode-debugadapter";
import { FlutterWebTestDebugSession } from "./flutter_web_test_debug_impl";
DebugSession.run(FlutterWebTestDebugSession);
示例9:
/*---------------------------------------------------------
* Copyright (C) Microsoft Corporation. All rights reserved.
*--------------------------------------------------------*/
import {WebKitDebugSession} from './webKitDebugSession';
import {DebugSession} from 'vscode-debugadapter';
DebugSession.run(WebKitDebugSession);
示例10:
import { DebugSession } from "vscode-debugadapter";
import { FlutterDebugSession } from "./flutter_debug_impl";
DebugSession.run(FlutterDebugSession);