Files
codeql/python/ql/test/library-tests/exceptions/Handles.ql
2025-11-26 12:30:31 +00:00

7 lines
186 B
Plaintext

import python
private import LegacyPointsTo
from ExceptFlowNode ex, Value val
where ex.handledException(val, _, _)
select ex.getLocation().getStartLine(), ex.toString(), val.toString()