Files
codeql/python/ql/test/library-tests/stmts/try_stmt/AST.ql
2018-11-19 15:15:54 +00:00

7 lines
204 B
Plaintext

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