当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript ExtHostDocumentSaveParticipant.%24participateInSave方法代码示例

本文整理汇总了TypeScript中vs/workbench/api/node/extHostDocumentSaveParticipant.ExtHostDocumentSaveParticipant.%24participateInSave方法的典型用法代码示例。如果您正苦于以下问题:TypeScript ExtHostDocumentSaveParticipant.%24participateInSave方法的具体用法?TypeScript ExtHostDocumentSaveParticipant.%24participateInSave怎么用?TypeScript ExtHostDocumentSaveParticipant.%24participateInSave使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在vs/workbench/api/node/extHostDocumentSaveParticipant.ExtHostDocumentSaveParticipant的用法示例。


在下文中一共展示了ExtHostDocumentSaveParticipant.%24participateInSave方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: ExtHostDocumentSaveParticipant

	test('event delivery, concurrent change', () => {

		let edits: IResourceEdit[];
		const participant = new ExtHostDocumentSaveParticipant(documents, new class extends MainThreadWorkspaceShape {
			$applyWorkspaceEdit(_edits) {
				edits = _edits;
				return TPromise.as(true);
			}
		});

		let sub = participant.onWillSaveTextDocumentEvent(function (e) {

			// concurrent change from somewhere
			documents.$acceptModelChanged(resource.toString(), [{
				versionId: 2,
				range: { startLineNumber: 1, startColumn: 1, endLineNumber: 1, endColumn: 1 },
				text: 'bar',
				rangeLength: undefined, eol: undefined, isRedoing: undefined, isUndoing: undefined,
			}]);

			e.waitUntil(TPromise.as([TextEdit.insert(new Position(0, 0), 'bar')]));
		});

		return participant.$participateInSave(resource, SaveReason.EXPLICIT).then(values => {
			sub.dispose();

			assert.equal(edits, undefined);
			assert.equal(values[0], false);
		});

	});
开发者ID:asotog,项目名称:vscode,代码行数:31,代码来源:extHostDocumentSaveParticipant.test.ts

示例2: ExtHostDocumentSaveParticipant

	test('event delivery, overall timeout', () => {
		const participant = new ExtHostDocumentSaveParticipant(nullLogService, documents, mainThreadEditors, { timeout: 20, errors: 5 });

		let callCount = 0;
		let sub1 = participant.getOnWillSaveTextDocumentEvent(nullExtensionDescription)(function (event) {
			callCount += 1;
			event.waitUntil(TPromise.timeout(17));
		});

		let sub2 = participant.getOnWillSaveTextDocumentEvent(nullExtensionDescription)(function (event) {
			callCount += 1;
			event.waitUntil(TPromise.timeout(17));
		});

		let sub3 = participant.getOnWillSaveTextDocumentEvent(nullExtensionDescription)(function (event) {
			callCount += 1;
		});

		return participant.$participateInSave(resource, SaveReason.EXPLICIT).then(values => {
			sub1.dispose();
			sub2.dispose();
			sub3.dispose();

			assert.equal(callCount, 2);
			assert.equal(values.length, 2);
		});
	});
开发者ID:servicesgpr,项目名称:vscode,代码行数:27,代码来源:extHostDocumentSaveParticipant.test.ts

示例3: Error

	test('event delivery, ignore bad listeners', async () => {
		const participant = new ExtHostDocumentSaveParticipant(nullLogService, documents, mainThreadEditors, { timeout: 5, errors: 1 });

		let callCount = 0;
		let sub = participant.getOnWillSaveTextDocumentEvent(nullExtensionDescription)(function (event) {
			callCount += 1;
			throw new Error('boom');
		});

		await participant.$participateInSave(resource, SaveReason.EXPLICIT);
		await participant.$participateInSave(resource, SaveReason.EXPLICIT);
		await participant.$participateInSave(resource, SaveReason.EXPLICIT);
		await participant.$participateInSave(resource, SaveReason.EXPLICIT);

		sub.dispose();
		assert.equal(callCount, 2);
	});
开发者ID:servicesgpr,项目名称:vscode,代码行数:17,代码来源:extHostDocumentSaveParticipant.test.ts

示例4: Error

	test('event delivery, ignore bad listeners', () => {
		const participant = new ExtHostDocumentSaveParticipant(documents, workspace, { timeout: 5, errors: 1 });

		let callCount = 0;
		let sub = participant.onWillSaveTextDocumentEvent(function (event) {
			callCount += 1;
			throw new Error('boom');
		});

		return TPromise.join([
			participant.$participateInSave(resource, SaveReason.EXPLICIT),
			participant.$participateInSave(resource, SaveReason.EXPLICIT),
			participant.$participateInSave(resource, SaveReason.EXPLICIT),
			participant.$participateInSave(resource, SaveReason.EXPLICIT)

		]).then(values => {
			sub.dispose();
			assert.equal(callCount, 2);
		});
	});
开发者ID:asotog,项目名称:vscode,代码行数:20,代码来源:extHostDocumentSaveParticipant.test.ts


注:本文中的vs/workbench/api/node/extHostDocumentSaveParticipant.ExtHostDocumentSaveParticipant.%24participateInSave方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。