當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript DebugClient.stop方法代碼示例

本文整理匯總了TypeScript中vscode-debugadapter-testsupport.DebugClient.stop方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript DebugClient.stop方法的具體用法?TypeScript DebugClient.stop怎麽用?TypeScript DebugClient.stop使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在vscode-debugadapter-testsupport.DebugClient的用法示例。


在下文中一共展示了DebugClient.stop方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: teardown

	teardown(done => {
		dc.stop().then(_ => {
			done();
		}).catch(err => {
			done(err);
		});
	});
開發者ID:davidtme,項目名稱:vscode-mono-debug,代碼行數:7,代碼來源:adapter.test.ts

示例2: teardown

	teardown(done => {

		return dc.stop().then(() => {
			done();
		}).catch(err => {
			done(err);
		});
	});
開發者ID:abug,項目名稱:vscode-node-debug,代碼行數:8,代碼來源:adapter.test.ts

示例3: testSourcemaps

export async function testSourcemaps(
	dc: DebugClient,
	srcDir: string,
	stepInRepeat = 1
): Promise<void> {

	let fPath = path.join(srcDir, 'f.js');
	let gPath = path.join(srcDir, 'g.js');

	await util.setBreakpoints(dc, fPath, [ 7 ]);

	let stoppedEvent = await util.runCommandAndReceiveStoppedEvent(dc, () =>
		util.evaluateDelayed(dc, 'f()', 0));
	let threadId = stoppedEvent.body.threadId!;

	await checkDebuggeeState(dc, threadId, fPath, 7, 'x', '2');

	for (let i = 0; i < stepInRepeat; i++) {
		await util.runCommandAndReceiveStoppedEvent(dc, () => dc.stepInRequest({ threadId }));
	}

	await checkDebuggeeState(dc, threadId, gPath, 5, 'y', '2');

	await util.runCommandAndReceiveStoppedEvent(dc, () => dc.stepOutRequest({ threadId }));
	if (process.env['NEW_STEP_OUT_BEHAVIOR'] !== 'true') {
		await util.runCommandAndReceiveStoppedEvent(dc, () => dc.stepOutRequest({ threadId }));
	}

	await checkDebuggeeState(dc, threadId, fPath, 8, 'x', '4');

	await util.setBreakpoints(dc, gPath, [ 5 ]);

	await util.runCommandAndReceiveStoppedEvent(dc, () => dc.continueRequest({ threadId }));

	await checkDebuggeeState(dc, threadId, gPath, 5, 'y', '4');

	await dc.stop();
}
開發者ID:hbenl,項目名稱:vscode-firefox-debug,代碼行數:38,代碼來源:sourceMapUtil.ts

示例4: afterEach

	afterEach(async function() {
		await dc.stop();
	});
開發者ID:hbenl,項目名稱:vscode-firefox-debug,代碼行數:3,代碼來源:testEvaluate.ts

示例5: afterEach

 afterEach('stop debug adapter', () =>
     client.stop()
開發者ID:VivPat,項目名稱:vscode-php-debug,代碼行數:2,代碼來源:adapter.ts

示例6: teardown

	teardown( () => dc.stop() );
開發者ID:xoriath,項目名稱:vscode-atmel-debug,代碼行數:1,代碼來源:atmelDebugAdapter.test.ts

示例7: afterEach

	afterEach(async function() {
		if (dc) {
			await dc.stop();
			dc = undefined;
		}
	});
開發者ID:hbenl,項目名稱:vscode-firefox-debug,代碼行數:6,代碼來源:testGulpSourceMaps.ts

示例8: teardown

	teardown(() => {
		dc.stop();
	});
開發者ID:karuna,項目名稱:vscode-ruby,代碼行數:3,代碼來源:adapter.test.ts


注:本文中的vscode-debugadapter-testsupport.DebugClient.stop方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。