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


TypeScript html.htmlTokenTypes类代码示例

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


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

示例1: test

	test('Multiline', () => {
		modesUtil.assertTokenization(tokenizationSupport, [{
			line: '<div>',
			tokens: [
				{ startIndex:0, type: htmlTokenTypes.DELIM_START },
				{ startIndex:1, type: htmlTokenTypes.getTag('div') },
				{ startIndex:4, type: htmlTokenTypes.DELIM_START }
			]}, {
			line: '{{#if foo}}',
			tokens: [
				{ startIndex:0, type: handlebarsTokenTypes.EMBED },
				{ startIndex:2, type: handlebarsTokenTypes.KEYWORD },
				{ startIndex:5, type: '' },
				{ startIndex:6, type: handlebarsTokenTypes.VARIABLE },
				{ startIndex:9, type: handlebarsTokenTypes.EMBED }
			]}, {
			line: '<span>{{bar}}</span>',
			tokens: [
				{ startIndex:0, type: htmlTokenTypes.DELIM_START },
				{ startIndex:1, type: htmlTokenTypes.getTag('span') },
				{ startIndex:5, type: htmlTokenTypes.DELIM_START },
				{ startIndex:6, type: handlebarsTokenTypes.EMBED },
				{ startIndex:8, type: handlebarsTokenTypes.VARIABLE },
				{ startIndex:11, type: handlebarsTokenTypes.EMBED },
				{ startIndex:13, type: htmlTokenTypes.DELIM_END },
				{ startIndex:15, type: htmlTokenTypes.getTag('span') },
				{ startIndex:19, type: htmlTokenTypes.DELIM_END }
			]}, {
			line: '{{/if}}',
			tokens: null}
		]);
	});
开发者ID:1Hgm,项目名称:vscode,代码行数:32,代码来源:handlebars.test.ts

示例2: test

	test('HTML Expressions', () => {
		modesUtil.assertTokenization(tokenizationSupport, [{
			line: '<script type="text/x-handlebars-template"><h1>{{ title }}</h1></script>',
			tokens: [
				{ startIndex:0, type: htmlTokenTypes.DELIM_START, bracket: Modes.Bracket.Open },
				{ startIndex:1, type: htmlTokenTypes.getTag('script') },
				{ startIndex:7, type: '' },
				{ startIndex:8, type: htmlTokenTypes.ATTRIB_NAME },
				{ startIndex:12, type: htmlTokenTypes.DELIM_ASSIGN },
				{ startIndex:13, type: htmlTokenTypes.ATTRIB_VALUE },
				{ startIndex:41, type: htmlTokenTypes.DELIM_START, bracket: Modes.Bracket.Close },
				{ startIndex:42, type: htmlTokenTypes.DELIM_START, bracket: Modes.Bracket.Open },
				{ startIndex:43, type: htmlTokenTypes.getTag('h1') },
				{ startIndex:45, type: htmlTokenTypes.DELIM_START, bracket: Modes.Bracket.Close },
				{ startIndex:46, type: handlebarsTokenTypes.EMBED, bracket: Modes.Bracket.Open },
				{ startIndex:48, type: '' },
				{ startIndex:49, type: handlebarsTokenTypes.VARIABLE },
				{ startIndex:54, type: '' },
				{ startIndex:55, type: handlebarsTokenTypes.EMBED, bracket: Modes.Bracket.Close },
				{ startIndex:57, type: htmlTokenTypes.DELIM_END, bracket: Modes.Bracket.Open },
				{ startIndex:59, type: htmlTokenTypes.getTag('h1') },
				{ startIndex:61, type: htmlTokenTypes.DELIM_END, bracket: Modes.Bracket.Close },
				{ startIndex:62, type: htmlTokenTypes.DELIM_END, bracket: Modes.Bracket.Open },
				{ startIndex:64, type: htmlTokenTypes.getTag('script') },
				{ startIndex:70, type: htmlTokenTypes.DELIM_END, bracket: Modes.Bracket.Close }
			]}
		]);
	});
开发者ID:ErickWendel,项目名称:vscode,代码行数:28,代码来源:handlebars.test.ts


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