JS: Treat Angular2 ElementRef.nativeElement as a DOM value

This commit is contained in:
Asger F
2023-04-26 14:12:54 +02:00
parent b696936d10
commit cb04df49eb

View File

@@ -547,4 +547,10 @@ module Angular2 {
)
}
}
private class DomValueSources extends DOM::DomValueSource::Range {
DomValueSources() {
this = API::Node::ofType("@angular/core", "ElementRef").getMember("nativeElement").asSource()
}
}
}