mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
How could the tests fail because of autoformatting, you may ask? The answer is deprecation warnings. These specify the location of the deprecated entity, and due to autoformatting these moved around.
11 lines
802 B
Plaintext
11 lines
802 B
Plaintext
WARNING: Type CustomPointsToOriginFact has been deprecated and may be removed in future (test.ql:9,27-51)
|
|
| 9 | ControlFlowNode for has_type_int | Function has_type_int | builtin-class function |
|
|
| 9 | ControlFlowNode for has_type_int() | has_type_int() | builtin-class int |
|
|
| 9 | ControlFlowNode for x | has_type_int() | builtin-class int |
|
|
| 10 | ControlFlowNode for has_type_float | Function has_type_float | builtin-class function |
|
|
| 10 | ControlFlowNode for has_type_float() | has_type_float() | builtin-class float |
|
|
| 10 | ControlFlowNode for y | has_type_float() | builtin-class float |
|
|
| 11 | ControlFlowNode for Tuple | Tuple | builtin-class tuple |
|
|
| 11 | ControlFlowNode for x | has_type_int() | builtin-class int |
|
|
| 11 | ControlFlowNode for y | has_type_float() | builtin-class float |
|