mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
14 lines
260 B
Plaintext
14 lines
260 B
Plaintext
/**
|
|
* @name Builtin objects
|
|
* @description Finds expressions that refer to an object in the builtins module (like int or None).
|
|
* @tags reference
|
|
* builtin
|
|
* object
|
|
*/
|
|
|
|
import python
|
|
|
|
from Expr e
|
|
where e.refersTo(builtin_object(_))
|
|
select e
|