mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
13 lines
241 B
Plaintext
13 lines
241 B
Plaintext
/**
|
|
* @id js/examples/namedfnexpr
|
|
* @name Named function expression
|
|
* @description Finds function expressions that have a name
|
|
* @tags function expression
|
|
*/
|
|
|
|
import javascript
|
|
|
|
from FunctionExpr fn
|
|
where exists(fn.getName())
|
|
select fn
|