/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
vscode-ng-language-service/syntaxes/test/data/inline-styles.ts
26 строк
702 B
Joey Perrott
build: migrate vscode extension into repo (#63924)
24 сен 2025, 23:24
24 сен 2025, 23:24
863c7ea
Код
Авторство
О чём код?
/* clang-format off */ @Component({ //// Property key/value test styles: [ '.example { width: 100px; }' ], //// Multiple styles test styles: [ '.example { width: 100px; }', '.example { height: 100px; }', ], //// String delimiter tests styles: [ `.example { width: 100px; }` ], styles: [ ".example { width: 100px; }" ], styles: [ '.example { width: 100px; }' ], //// Parenthesization tests styles: ( (( [ ( '.example { width: 100px; }' ) ] )) ), //// styles string styles: ( (( ( '.example { width: 100px; }' ) )) ), styles: `.example { width: 100px; }` , styles: ".example { width: 100px; }" , styles: '.example { width: 100px; }' , }) export class TMComponent{}