mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
8 lines
238 B
Plaintext
8 lines
238 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
|