I’m looking to parse HTML and extract template expressions like {{ ... }} and [...].
Is there a tool in Angular that can help with this?
Additionally, is there a tool that can detect when a variable used in the template isn’t defined in the component class?
For example:
template: `{{ hello }}` // <-- 'hello' is not defined in the class
export class Foo { }