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


TypeScript Model.getValue方法代碼示例

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


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

示例1: test

	test('snippets, selections and snippet ranges', function () {
		const session = new SnippetSession(editor, '${1:foo}farboo${2:bar}$0');
		session.insert();
		assert.equal(model.getValue(), 'foofarboobarfunction foo() {\n    foofarboobarconsole.log(a);\n}');
		assertSelections(editor, new Selection(1, 1, 1, 4), new Selection(2, 5, 2, 8));

		assert.equal(session.isSelectionWithinPlaceholders(), true);

		editor.setSelections([new Selection(1, 1, 1, 1)]);
		assert.equal(session.isSelectionWithinPlaceholders(), false);

		editor.setSelections([new Selection(1, 6, 1, 6), new Selection(2, 10, 2, 10)]);
		assert.equal(session.isSelectionWithinPlaceholders(), false); // in snippet, outside placeholder

		editor.setSelections([new Selection(1, 6, 1, 6), new Selection(2, 10, 2, 10), new Selection(1, 1, 1, 1)]);
		assert.equal(session.isSelectionWithinPlaceholders(), false); // in snippet, outside placeholder

		editor.setSelections([new Selection(1, 6, 1, 6), new Selection(2, 10, 2, 10), new Selection(2, 20, 2, 21)]);
		assert.equal(session.isSelectionWithinPlaceholders(), false);

		// reset selection to placeholder
		session.next();
		assert.equal(session.isSelectionWithinPlaceholders(), true);
		assertSelections(editor, new Selection(1, 10, 1, 13), new Selection(2, 14, 2, 17));

		// reset selection to placeholder
		session.next();
		assert.equal(session.isSelectionWithinPlaceholders(), true);
		assert.equal(session.isAtLastPlaceholder, true);
		assertSelections(editor, new Selection(1, 13, 1, 13), new Selection(2, 17, 2, 17));
	});
開發者ID:FabianLauer,項目名稱:vscode,代碼行數:31,代碼來源:snippetSession.test.ts

示例2: format

	function format(unformatted: string, expected: string, insertSpaces = true) {
		var range : EditorCommon.IRange = null;

		var mirrorModel = MirrorModel.createTestMirrorModelFromString(unformatted);

		var rangeStart = unformatted.indexOf('|');
		var rangeEnd = unformatted.lastIndexOf('|');
		if (rangeStart !== -1 && rangeEnd !== -1) {
			unformatted = unformatted.substring(0, rangeStart) + unformatted.substring(rangeStart + 1, rangeEnd) + unformatted.substring(rangeEnd + 1);

			var startPos = mirrorModel.getPositionFromOffset(rangeStart);
			var endPos = mirrorModel.getPositionFromOffset(rangeEnd);
			range = { startLineNumber: startPos.lineNumber, startColumn: startPos.column, endLineNumber: endPos.lineNumber, endColumn: endPos.column };
			mirrorModel = MirrorModel.createTestMirrorModelFromString(unformatted);
		}

		var operations = Formatter.format(mirrorModel, range, { tabSize: 2, insertSpaces: insertSpaces });

		var model = new Model(unformatted, Model.DEFAULT_CREATION_OPTIONS, null);
		model.pushEditOperations([], operations.map(o => {
			return {
				range: Range.lift(o.range),
				text: o.text,
				identifier: null,
				forceMoveMarkers: false
			};
		}), () => []);
		var newContent = model.getValue(EditorCommon.EndOfLinePreference.LF);
		assert.equal(newContent, expected);
		model.dispose();
	}
開發者ID:13572293130,項目名稱:vscode,代碼行數:31,代碼來源:formatter.test.ts

示例3: test

	test('Apply changes to model - one multi line change', () => {
		var original = new Model('One line that is equal. \n Second line is different. \n Third line also different. \n Forth line is same. \n Fifth line is different.', mode);
		var modified = new Model('One line that is equal. \n 2nd line is different. \n 3rd line also different. \n Forth line is same. \n 5th line is different.', mode);
		var changes: IChange[] = [];
		changes.push(createChange(2, 3, 2, 3));
		var result = applyChangesToModel(original, modified, changes);
		var expected = new Model('One line that is equal. \n 2nd line is different. \n 3rd line also different. \n Forth line is same. \n Fifth line is different.', mode);
		assert.equal(result, expected.getValue());
		original.dispose();
		modified.dispose();
		expected.dispose();
	});
開發者ID:gaoxiaojun,項目名稱:vscode,代碼行數:12,代碼來源:stageRanges.test.ts


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