/* clang-format off */ /* Inline template recognition tests */ @Component({ //// Property key/value test template: '
', //// String delimiter tests template: `
`, template: "
", template: '
', //// Parenthesization tests template: ( (( '
' )) ), //// Comments tests // template: '
' /* * template: '
' */ /** * template: '
' */ }) export class TMComponent{} /* Template syntax tests */ @Component({ // Interpolation test template: '{{property}}', }) export class TMComponent{}