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


TypeScript testUtil.testOnEnter函数代码示例

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


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

示例1: testOnEnter

/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/

'use strict';

import {language} from 'vs/editor/standalone-languages/cpp';
import {testOnEnter, testTokenization} from 'vs/editor/standalone-languages/test/testUtil';

testOnEnter('cpp', language, (assertOnEnter) => {
	assertOnEnter.nothing('', ' a', '');
	assertOnEnter.indents('', ' <', '');
	assertOnEnter.indents('', ' {', '');
	assertOnEnter.indents('', '( ', '');
	assertOnEnter.indents('', ' [ ', '');
	assertOnEnter.indentsOutdents('', ' { ', ' } ');
});

testTokenization('cpp', language, [
	// Keywords
	[{
	line: 'int _tmain(int argc, _TCHAR* argv[])',
	tokens: [
		{ startIndex: 0, type: 'keyword.int.cpp' },
		{ startIndex: 3, type: '' },
		{ startIndex: 4, type: 'identifier.cpp' },
		{ startIndex: 10, type: 'delimiter.parenthesis.cpp' },
		{ startIndex: 11, type: 'keyword.int.cpp' },
		{ startIndex: 14, type: '' },
		{ startIndex: 15, type: 'identifier.cpp' },
开发者ID:13572293130,项目名称:vscode,代码行数:31,代码来源:cpp.test.ts

示例2: testOnEnter

		{ startIndex: 0, type: '' },
		{ startIndex: 5, type: 'string.bat' },
		{ startIndex: 13, type: 'variable.bat' },
		{ startIndex: 16, type: 'string.bat' }
	]}, {
	line: '	non terminated "string %%aaa sdf',
	tokens: [
		{ startIndex: 0, type: '' },
		{ startIndex: 16, type: 'string.bat' },
		{ startIndex: 24, type: 'variable.bat' },
		{ startIndex: 29, type: 'string.bat' }
	]}, {
	line: '	this shold NOT BE red',
	tokens: [
		{ startIndex: 0, type: '' },
		{ startIndex: 12, type: 'support.function.not.bat' },
		{ startIndex: 15, type: '' }
	]}, {
	line: ')',
	tokens: [
		{ startIndex: 0, type: 'punctuation.parenthesis.bat' }
	]}]
]);

testOnEnter('bat', conf, (assertOnEnter) => {
	assertOnEnter.nothing('', ' a', '');
	assertOnEnter.indents('', ' {', '');
	assertOnEnter.indents('', '( ', '');
	assertOnEnter.indents('', ' [ ', '');
	assertOnEnter.indentsOutdents('', ' { ', ' } ');
});
开发者ID:Huachao,项目名称:vscode,代码行数:31,代码来源:bat.test.ts


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