/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
vscode-ng-language-service/syntaxes/src/template.ts
29 строк
796 B
Kristiyan Kostadinov
build: update license for vscode extension
12 янв 2026, 19:17
12 янв 2026, 19:17
f0dba6d
Код
Авторство
О чём код?
/*! * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {GrammarDefinition} from './types'; export const Template: GrammarDefinition = { scopeName: 'template.ng', injectionSelector: 'L:text.html -comment -control.block.ng -meta.definition.variable.ng', patterns: [{include: '#interpolation'}], repository: { interpolation: { begin: /{{/, beginCaptures: { 0: {name: 'punctuation.definition.block.ts'}, }, end: /}}/, endCaptures: { 0: {name: 'punctuation.definition.block.ts'}, }, contentName: 'expression.ng', patterns: [{include: 'expression.ng'}], }, }, };