Files
codeql/javascript/ql/examples/snippets/methodcall.ql
2019-08-02 15:33:40 +02:00

16 lines
285 B
Plaintext

/**
* @id js/examples/methodcall
* @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