当前位置: 首页>>代码示例>>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;未经允许,请勿转载。