angular/packages/compiler/test
Miles Malerba 51b8ff23ce feat(compiler): support tagged template literals in expressions (#59947)
Adds support for using tagged template literals in Angular templates.

Ex:
```
@Component({
  template: '{{ greet`Hello, ${name()}` }}'
})
export class MyComp {
  name = input();

  greet(strings: TemplateStringsArray, name: string) {
    return strings[0] + name + strings[1] + '!';
  }
}
```

PR Close #59947
2025-02-28 19:53:33 +00:00
..
expression_parser feat(compiler): support tagged template literals in expressions (#59947) 2025-02-28 19:53:33 +00:00
i18n test(compiler): update failing tests (#58217) 2024-10-16 09:47:10 +00:00
ml_parser refactor: update license text to point to angular.dev (#57901) 2024-09-24 15:33:00 +02:00
output refactor(compiler): remove unused field from output AST (#58444) 2024-11-01 14:32:57 +00:00
render3 feat(compiler): support tagged template literals in expressions (#59947) 2025-02-28 19:53:33 +00:00
schema refactor: update license text to point to angular.dev (#57901) 2024-09-24 15:33:00 +02:00
selector refactor: update license text to point to angular.dev (#57901) 2024-09-24 15:33:00 +02:00
shadow_css fix(compiler): handle :host-context with comma-separated child selector (#59276) 2025-01-21 09:11:16 -08:00
BUILD.bazel build: replace base64-js package with Node.js Buffer usage (#53464) 2023-12-11 14:04:06 -08:00
compiler_facade_interface_spec.ts docs: set syntax highlighting of code examples MD code blocks (#59026) 2024-12-04 17:30:28 +01:00
integration_spec.ts refactor(core): Migrate all packages with the explicit-standalone-flag schematic. (#58160) 2024-10-14 14:58:57 +00:00
security_spec.ts refactor: update license text to point to angular.dev (#57901) 2024-09-24 15:33:00 +02:00
style_url_resolver_spec.ts refactor: update license text to point to angular.dev (#57901) 2024-09-24 15:33:00 +02:00
util_spec.ts refactor: update license text to point to angular.dev (#57901) 2024-09-24 15:33:00 +02:00