feat(angular): adds support for css class bindings

This commit is contained in:
Dennis van den Berg
2026-02-17 12:12:06 +01:00
committed by Christian Clason
parent 4d9466677a
commit ca35dc5184
2 changed files with 7 additions and 1 deletions

View File

@@ -18,7 +18,7 @@ return {
},
angular = {
install_info = {
revision = '3bd2036e710f609ea08fcfca5a1eb1169ecc114f',
revision = '41c861193f576cf0282573e7715dc4daa015de34',
url = 'https://github.com/dlvandenberg/tree-sitter-angular',
},
maintainers = { '@dlvandenberg' },

View File

@@ -28,6 +28,12 @@
(binding_name
(identifier) @keyword)
(class_binding
[
(identifier)
(class_name)
] @keyword)
(event_binding
(binding_name
(identifier) @keyword))