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


TypeScript ModelLine.split方法代碼示例

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


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

示例1: testLineSplit

	function testLineSplit(initialText: string, splitColumn: number, forceMoveMarkers: boolean, expectedText1: string, expectedText2: string): void {
		let line = new ModelLine(initialText);

		let otherLine = line.split(splitColumn);

		assert.equal(line.text, expectedText1, 'text');
		assert.equal(otherLine.text, expectedText2, 'text');
	}
開發者ID:AlexxNica,項目名稱:sqlopsstudio,代碼行數:8,代碼來源:model.line.test.ts

示例2: testLineSplitTokens

	function testLineSplitTokens(initialText: string, initialTokens: TestToken[], splitColumn: number, expectedText1: string, expectedText2: string, expectedTokens: TestToken[]): void {
		let line = new ModelLine(1, initialText, NO_TAB_SIZE);
		line.setTokens(0, TestToken.toTokens(initialTokens));

		let other = line.split(new MarkersTracker(), splitColumn, false, NO_TAB_SIZE);

		assert.equal(line.text, expectedText1);
		assert.equal(other.text, expectedText2);
		assertLineTokens(line.getTokens(0, []), expectedTokens);
	}
開發者ID:diarmaidm,項目名稱:vscode,代碼行數:10,代碼來源:model.line.test.ts

示例3: testLineSplitTokens

	function testLineSplitTokens(initialText:string, initialTokens: LineToken[], splitColumn:number, expectedText1:string, expectedText2:string, expectedTokens: LineToken[]): void {
		var line = new ModelLine(1, initialText, NO_TAB_SIZE);
		line.setTokens(new TokensInflatorMap(), initialTokens, null, []);

		var other = line.split({}, splitColumn, false, NO_TAB_SIZE);

		assert.equal(line.text, expectedText1);
		assert.equal(other.text, expectedText2);
		assertLineTokens(line.getTokens(), expectedTokens);
	}
開發者ID:AjuanM,項目名稱:vscode,代碼行數:10,代碼來源:model.line.test.ts

示例4: testLineSplitTokens

	function testLineSplitTokens(initialText: string, initialTokens: TestToken[], splitColumn: number, expectedText1: string, expectedText2: string, expectedTokens: TestToken[]): void {
		let line = new ModelLine(initialText);
		line.setTokens(0, TestToken.toTokens(initialTokens));

		let other = line.split(splitColumn);

		assert.equal(line.text, expectedText1);
		assert.equal(other.text, expectedText2);
		assertLineTokens(line.getTokens(0), expectedTokens);
	}
開發者ID:AlexxNica,項目名稱:sqlopsstudio,代碼行數:10,代碼來源:model.line.test.ts

示例5: testLineSplitMarkers

	function testLineSplitMarkers(initialText:string, initialMarkers: LineMarker[], splitColumn:number, forceMoveMarkers:boolean, expectedText1:string, expectedText2:string, expectedChangedMarkers:number[], _expectedMarkers1: LineMarker[], _expectedMarkers2: LineMarker[]): void {
		let line = new ModelLine(1, initialText, NO_TAB_SIZE);
		line.addMarkers(initialMarkers);

		let changedMarkers = Object.create(null);
		let otherLine = line.split(changedMarkers, splitColumn, forceMoveMarkers, NO_TAB_SIZE);

		assert.equal(line.text, expectedText1, 'text');
		assert.equal(otherLine.text, expectedText2, 'text');

		let actualMarkers1 = line.getMarkers().map(toLightWeightMarker);
		let expectedMarkers1 = _expectedMarkers1.map(toLightWeightMarker);
		assert.deepEqual(actualMarkers1, expectedMarkers1, 'markers');

		let actualMarkers2 = otherLine.getMarkers().map(toLightWeightMarker);
		let expectedMarkers2 = _expectedMarkers2.map(toLightWeightMarker);
		assert.deepEqual(actualMarkers2, expectedMarkers2, 'markers');

		let actualChangedMarkers = Object.keys(changedMarkers);
		actualChangedMarkers.sort().map(Object.prototype.toString);
		assert.deepEqual(actualChangedMarkers, expectedChangedMarkers, 'changed markers');
	}
開發者ID:GYGit,項目名稱:vscode,代碼行數:22,代碼來源:model.line.test.ts

示例6: testLineSplit

	function testLineSplit(initial:string, splitColumn:number, expected1:string, expected2:string): void {
		var line = new ModelLine(1, initial, NO_TAB_SIZE);
		var newLine = line.split({}, splitColumn, false, NO_TAB_SIZE);
		assert.equal(line.text, expected1);
		assert.equal(newLine.text, expected2);
	}
開發者ID:GYGit,項目名稱:vscode,代碼行數:6,代碼來源:model.line.test.ts


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