/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
vscode-ng-language-service/syntaxes/test/data/inline-template.ts
32 строки
602 B
Joey Perrott
build: migrate vscode extension into repo (#63924)
24 сен 2025, 23:24
24 сен 2025, 23:24
863c7ea
Код
Авторство
О чём код?
/* clang-format off */ /* Inline template recognition tests */ @Component({ //// Property key/value test template: '<div></div>', //// String delimiter tests template: `<div></div>`, template: "<div></div>", template: '<div></div>', //// Parenthesization tests template: ( (( '<div></div>' )) ), //// Comments tests // template: '<div></div>' /* * template: '<div></div>' */ /** * template: '<div></div>' */ }) export class TMComponent{} /* Template syntax tests */ @Component({ // Interpolation test template: '{{property}}', }) export class TMComponent{}