mirror of
https://github.com/github/codeql.git
synced 2026-01-01 00:27:24 +01:00
16 lines
277 B
Plaintext
16 lines
277 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
|