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


TypeScript DiagnosticCollection.clear方法代码示例

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


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

示例1: test

	test('diagnostic collection, forEach, clear, has', function () {
		let collection = new DiagnosticCollection('test', new DiagnosticsShape());
		assert.equal(collection.name, 'test');
		collection.dispose();
		assert.throws(() => collection.name);

		let c = 0;
		collection = new DiagnosticCollection('test', new DiagnosticsShape());
		collection.forEach(() => c++);
		assert.equal(c, 0);

		collection.set(URI.parse('foo:bar'), [
			new Diagnostic(new Range(0, 0, 1, 1), 'message-1'),
			new Diagnostic(new Range(0, 0, 1, 1), 'message-2')
		]);
		collection.forEach(() => c++);
		assert.equal(c, 1);

		c = 0;
		collection.clear();
		collection.forEach(() => c++);
		assert.equal(c, 0);

		collection.set(URI.parse('foo:bar1'), [
			new Diagnostic(new Range(0, 0, 1, 1), 'message-1'),
			new Diagnostic(new Range(0, 0, 1, 1), 'message-2')
		]);
		collection.set(URI.parse('foo:bar2'), [
			new Diagnostic(new Range(0, 0, 1, 1), 'message-1'),
			new Diagnostic(new Range(0, 0, 1, 1), 'message-2')
		]);
		collection.forEach(() => c++);
		assert.equal(c, 2);

		assert.ok(collection.has(URI.parse('foo:bar1')));
		assert.ok(collection.has(URI.parse('foo:bar2')));
		assert.ok(!collection.has(URI.parse('foo:bar3')));
		collection.delete(URI.parse('foo:bar1'));
		assert.ok(!collection.has(URI.parse('foo:bar1')));

		collection.dispose();
	});
开发者ID:FabianLauer,项目名称:vscode,代码行数:42,代码来源:extHostDiagnostics.test.ts

示例2: test

	test('diagnostic eventing', async function () {
		let emitter = new Emitter<(string | URI)[]>();
		let collection = new DiagnosticCollection('ddd', new DiagnosticsShape(), emitter);

		let diag1 = new Diagnostic(new Range(1, 1, 2, 3), 'diag1');
		let diag2 = new Diagnostic(new Range(1, 1, 2, 3), 'diag2');
		let diag3 = new Diagnostic(new Range(1, 1, 2, 3), 'diag3');

		let p = toPromise(emitter.event).then(a => {
			assert.equal(a.length, 1);
			assert.equal(a[0].toString(), 'aa:bb');
			assert.ok(URI.isUri(a[0]));
		});
		collection.set(URI.parse('aa:bb'), []);
		await p;

		p = toPromise(emitter.event).then(e => {
			assert.equal(e.length, 2);
			assert.ok(URI.isUri(e[0]));
			assert.ok(URI.isUri(e[1]));
			assert.equal(e[0].toString(), 'aa:bb');
			assert.equal(e[1].toString(), 'aa:cc');
		});
		collection.set([
			[URI.parse('aa:bb'), [diag1]],
			[URI.parse('aa:cc'), [diag2, diag3]],
		]);
		await p;

		p = toPromise(emitter.event).then(e => {
			assert.equal(e.length, 2);
			assert.ok(typeof e[0] === 'string');
			assert.ok(typeof e[1] === 'string');
		});
		collection.clear();
		await p;
	});
开发者ID:jinlongchen2018,项目名称:vscode,代码行数:37,代码来源:extHostDiagnostics.test.ts

示例3:

		assert.throws(() => collection.clear());
开发者ID:FabianLauer,项目名称:vscode,代码行数:1,代码来源:extHostDiagnostics.test.ts


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