Files
codeql/javascript/ql/examples/snippets/methodcall.ql
2019-07-26 17:47:11 +02:00

14 lines
258 B
Plaintext

/**
* @name Method calls
* @description Finds calls of the form `this.isMounted(...)`
* @tags call
* method
*/
import javascript
from MethodCallExpr c
where c.getReceiver() instanceof ThisExpr and
c.getMethodName() = "isMounted"
select c