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


TypeScript uri.create函数代码示例

本文整理汇总了TypeScript中vs/base/common/uri.create函数的典型用法代码示例。如果您正苦于以下问题:TypeScript create函数的具体用法?TypeScript create怎么用?TypeScript create使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


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

示例1: test

	test('http#toString', () => {
		assert.equal(URI.create('http', 'www.msft.com', '/my/path').toString(), 'http://www.msft.com/my/path');
		assert.equal(URI.create('http', 'www.msft.com', '/my/path').toString(), 'http://www.msft.com/my/path');
		assert.equal(URI.create('http', 'www.MSFT.com', '/my/path').toString(), 'http://www.msft.com/my/path');
		assert.equal(URI.create('http', '', 'my/path').toString(), 'http:my/path');
		assert.equal(URI.create('http', '', '/my/path').toString(), 'http:/my/path');
		assert.equal(URI.create('', '', 'my/path').toString(), 'my/path');
		assert.equal(URI.create('', '', '/my/path').toString(), '/my/path');
		//http://a-test-site.com/#test=true
		assert.equal(URI.create('http', 'a-test-site.com', '/', 'test=true').toString(), 'http://a-test-site.com/?test%3Dtrue');
		assert.equal(URI.create('http', 'a-test-site.com', '/', '', 'test=true').toString(), 'http://a-test-site.com/#test%3Dtrue');
	});
开发者ID:CPoirot3,项目名称:vscode,代码行数:12,代码来源:uri.test.ts

示例2: createMockModelService

export function createMockModelService(): IModelService {
	let contextService = new BaseWorkspaceContextService({
		resource: URI.create('inmemory', 'model', '/'),
		id: null,
		name: null,
		uid: null,
		mtime: null
	}, {});
	let eventService = new EventService();
	let configurationService = new MockConfigurationService(contextService, eventService);
	var threadService = NULL_THREAD_SERVICE;
	var pluginService = new MockPluginService();
	var modeService = new MockModeService(threadService, pluginService);
	var modelService = new MockModelService(threadService, null, modeService, configurationService);
	var inst = createInstantiationService({
		threadService: threadService,
		pluginService: pluginService,
		modeService: modeService,
		contextService: contextService,
		eventService: eventService,
		configurationService: configurationService
	});
	threadService.setInstantiationService(inst);
	return modelService;
}
开发者ID:BMGburger,项目名称:vscode,代码行数:25,代码来源:servicesTestUtils.ts

示例3: createMockModelService

export function createMockModelService(): IModelService {
	let contextService = new BaseWorkspaceContextService({
		resource: URI.create('inmemory', 'model', '/'),
		id: null,
		name: null,
		uid: null,
		mtime: null
	}, {});
	let eventService = new EventService();
	let configurationService = new MockConfigurationService(contextService, eventService);
	var threadService = NULL_THREAD_SERVICE;
	var extensionService = new MockExtensionService();
	var modeService = new MockModeService(threadService, extensionService);
	var modelService = new MockModelService(threadService, null, modeService, configurationService, null);

	var services = new ServiceCollection();
	services.set(IThreadService, threadService);
	services.set(IExtensionService, extensionService);
	services.set(IModeService, modeService);
	services.set(IWorkspaceContextService, contextService);
	services.set(IEventService, eventService);
	services.set(IConfigurationService, configurationService);
	var inst = new InstantiationService(services);

	threadService.setInstantiationService(inst);
	return modelService;
}
开发者ID:13572293130,项目名称:vscode,代码行数:27,代码来源:servicesTestUtils.ts

示例4: test

	test('http#toString', () => {
		assert.equal(URI.create('http', 'www.msft.com', '/my/path').toString(), 'http://www.msft.com/my/path');
		assert.equal(URI.create('http', 'www.msft.com', '/my/path').toString(), 'http://www.msft.com/my/path');
		assert.equal(URI.create('http', 'www.MSFT.com', '/my/path').toString(), 'http://www.msft.com/my/path');
		assert.equal(URI.create('http', '', 'my/path').toString(), 'http:my/path');
		assert.equal(URI.create('http', '', '/my/path').toString(), 'http:/my/path');
		assert.equal(URI.create('', '', 'my/path').toString(), 'my/path');
		assert.equal(URI.create('', '', '/my/path').toString(), '/my/path');
	});
开发者ID:jornylau,项目名称:vscode,代码行数:9,代码来源:uri.test.ts

示例5: test

	test('with', () => {
		assert.equal(URI.create().withScheme('http').withPath('/api/files/test.me').withQuery('t=1234').toString(), 'http:/api/files/test.me?t%3D1234');
		assert.equal(URI.create().with('http', '', '/api/files/test.me', 't=1234', '').toString(), 'http:/api/files/test.me?t%3D1234');
		assert.equal(URI.create().with('https', '', '/api/files/test.me', 't=1234', '').toString(), 'https:/api/files/test.me?t%3D1234');
		assert.equal(URI.create().with('HTTP', '', '/api/files/test.me', 't=1234', '').toString(), 'HTTP:/api/files/test.me?t%3D1234');
		assert.equal(URI.create().with('HTTPS', '', '/api/files/test.me', 't=1234', '').toString(), 'HTTPS:/api/files/test.me?t%3D1234');
		assert.equal(URI.create().with('boo', '', '/api/files/test.me', 't=1234', '').toString(), 'boo:/api/files/test.me?t%3D1234');
	});
开发者ID:acon-ken,项目名称:vscode,代码行数:8,代码来源:uri.test.ts

示例6: with

	public with(scheme: string, authority: string, path: string, query: string, fragment: string): URI {
		return URI.create(scheme, authority, path, query, fragment);
	}
开发者ID:gaoxiaojun,项目名称:vscode,代码行数:3,代码来源:network.ts

示例7: withFragment

	public withFragment(value: string): URI {
		return URI.create(this.scheme, this.authority, this.fsPath, this.query, value);
	}
开发者ID:gaoxiaojun,项目名称:vscode,代码行数:3,代码来源:network.ts


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