fkling / astexplorer

A web tool to explore the ASTs generated by various parsers.
https://astexplorer.net/
MIT License
6.04k stars 711 forks source link

feat(angular): support angular v17 #700

Closed chimurai closed 6 months ago

chimurai commented 7 months ago

Support Angular 17 - control flow (https://angular.io/guide/control_flow)

<!DOCTYPE html>
<html>

<body>

@for (user of users; track user.id) {
  <p>{{ user.name }}</p>
}

</body>

</html>
fkling commented 6 months ago

Thank you!

fkling commented 6 months ago

I needed to revert this because one of the packages required a new Node version, which isn't possible for this project for various reasons. I look into how to make it happen.

chimurai commented 6 months ago

No worries. Thanks for looking into it 🙏