Files
codeql/python/ql/test/library-tests/stmts/try_stmt/AST.ql
2020-03-30 11:59:10 +02:00

7 lines
207 B
Plaintext

import python
from AstNode parent, AstNode child
where child.getParentNode() = parent
select parent.getLocation().getStartLine(), parent.toString(), child.getLocation().getStartLine(),
child.toString()