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


TypeScript ModelLine.getTokens方法代碼示例

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


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

示例1: testLineSplitTokens

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

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

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

示例2: testLineEditTokens

	function testLineEditTokens(initialText: string, initialTokens: Token[], edits: ILineEdit[], expectedText: string, expectedTokens: Token[]): void {
		let line = new ModelLine(1, initialText, NO_TAB_SIZE);
		let map = new TokensInflatorMap(null);
		line.setTokens(map, initialTokens, []);

		line.applyEdits({}, edits, NO_TAB_SIZE);

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

示例3: 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:fs814,項目名稱:vscode,代碼行數:10,代碼來源:model.line.test.ts

示例4: test

	test('insertion on empty line', () => {
		let line = new ModelLine(1, 'some text', NO_TAB_SIZE);
		line.setTokens(0, TestToken.toTokens([new TestToken(0, 1)]));

		line.applyEdits(new MarkersTracker(), [{ startColumn: 1, endColumn: 10, text: '', forceMoveMarkers: false }], NO_TAB_SIZE);
		line.setTokens(0, new Uint32Array(0));

		line.applyEdits(new MarkersTracker(), [{ startColumn: 1, endColumn: 1, text: 'a', forceMoveMarkers: false }], NO_TAB_SIZE);
		assertLineTokens(line.getTokens(0, []), [new TestToken(0, 1)]);
	});
開發者ID:fs814,項目名稱:vscode,代碼行數:10,代碼來源:model.line.test.ts

示例5: 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:SeanKilleen,項目名稱:vscode,代碼行數:10,代碼來源:model.line.test.ts

示例6: test

	test('insertion on empty line', () => {
		let line = new ModelLine('some text');
		line.setTokens(0, TestToken.toTokens([new TestToken(0, 1)]));

		line.applyEdits([{ startColumn: 1, endColumn: 10, text: '' }]);
		line.setTokens(0, new Uint32Array(0));

		line.applyEdits([{ startColumn: 1, endColumn: 1, text: 'a' }]);
		assertLineTokens(line.getTokens(0), [new TestToken(0, 1)]);
	});
開發者ID:SeanKilleen,項目名稱:vscode,代碼行數:10,代碼來源:model.line.test.ts

示例7: testLineSplitTokens

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

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

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

示例8: test

	test('insertion on empty line', () => {
		let line = new ModelLine(1, 'some text', NO_TAB_SIZE);
		let map = new TokensInflatorMap();
		line.setTokens(map, [new Token(0, 'bar')], null, []);

		line.applyEdits({}, [{startColumn:1, endColumn:10, text:'', forceMoveMarkers: false}], NO_TAB_SIZE);
		line.setTokens(map, [], null, []);

		line.applyEdits({}, [{startColumn:1, endColumn:1, text:'a', forceMoveMarkers: false}], NO_TAB_SIZE);
		assertLineTokens(line.getTokens(map), [new Token(0, '')]);
	});
開發者ID:GYGit,項目名稱:vscode,代碼行數:11,代碼來源:model.line.test.ts

示例9: testLineAppendTokens

	function testLineAppendTokens(aText: string, aTokens: TestToken[], bText: string, bTokens: TestToken[], expectedText: string, expectedTokens: TestToken[]): void {
		let a = new ModelLine(1, aText, NO_TAB_SIZE);
		a.setTokens(0, TestToken.toTokens(aTokens));

		let b = new ModelLine(2, bText, NO_TAB_SIZE);
		b.setTokens(0, TestToken.toTokens(bTokens));

		a.append(new MarkersTracker(), b, NO_TAB_SIZE);

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

示例10: testLineAppendTokens

	function testLineAppendTokens(aText: string, aTokens: TestToken[], bText: string, bTokens: TestToken[], expectedText: string, expectedTokens: TestToken[]): void {
		let a = new ModelLine(aText);
		a.setTokens(0, TestToken.toTokens(aTokens));

		let b = new ModelLine(bText);
		b.setTokens(0, TestToken.toTokens(bTokens));

		a.append(b);

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


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