mirror of
https://github.com/github/codeql.git
synced 2026-03-31 04:38:18 +02:00
Fixed 73 .ql query files where the @name metadata contained an ending period. This ensures consistency with the CodeQL query metadata style guidelines.
17 lines
437 B
Plaintext
17 lines
437 B
Plaintext
/**
|
|
* @name points-to fails for expression
|
|
* @description Expression does not "point-to" an object which prevents type inference.
|
|
* @kind problem
|
|
* @id py/points-to-failure
|
|
* @problem.severity info
|
|
* @tags debug
|
|
* @deprecated
|
|
*/
|
|
|
|
import python
|
|
private import LegacyPointsTo
|
|
|
|
from Expr e
|
|
where exists(ControlFlowNodeWithPointsTo f | f = e.getAFlowNode() | not f.refersTo(_))
|
|
select e, "Expression does not 'point-to' any object."
|