mirror of
https://github.com/github/codeql.git
synced 2026-02-14 22:21:06 +01:00
6 lines
239 B
Plaintext
6 lines
239 B
Plaintext
import javascript
|
|
|
|
from AngularJS::Controller c, DOM::ElementDefinition elem, string name
|
|
where c.boundTo(elem) and
|
|
if not c.boundToAs(elem, _) then name = "-" else c.boundToAs(elem, name)
|
|
select c, elem, c.getFactoryFunction(), name |