mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
14 lines
240 B
Plaintext
14 lines
240 B
Plaintext
/**
|
|
* @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 |