mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
16 lines
270 B
Plaintext
16 lines
270 B
Plaintext
/**
|
|
* @id js/examples/classname
|
|
* @name Classes called 'File'
|
|
* @description Finds classes called 'File'
|
|
* @tags class
|
|
* name
|
|
* ECMAScript 6
|
|
* ECMAScript 2015
|
|
*/
|
|
|
|
import javascript
|
|
|
|
from ClassDefinition cd
|
|
where cd.getName() = "File"
|
|
select cd
|