Files
codeql/cpp/ql/test/library-tests/c++_exceptions/handler.ql
2018-08-02 17:53:23 +01:00

10 lines
352 B
Plaintext

import cpp
from Handler h, string property, Element value
where
(property = "getParameter" and value = h.getParameter()) or
(property = "getBlock" and value = h.getBlock()) or
(property = "getTryStmt" and value = h.getTryStmt()) or
(property = "getTryStmt.getACatchClause()" and value = h.getTryStmt().getACatchClause())
select h, property, value