mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
15 lines
276 B
Plaintext
15 lines
276 B
Plaintext
/**
|
|
* @id js/examples/rendermethod
|
|
* @name Methods named 'render'
|
|
* @description Finds methods named 'render'
|
|
* @tags class
|
|
* method
|
|
* ECMAScript 6
|
|
* ECMAScript 2015
|
|
*/
|
|
|
|
import javascript
|
|
|
|
from MethodDefinition m
|
|
where m.getName() = "render"
|
|
select m |