mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +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
|