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