codeql/cpp-all
1.4.2
For other CodeQL resources, including tutorials and examples, see the CodeQL documentation
.
Gets the nth body statement of this block, indexed from 0.
n
For example, for the block
{ int a; int b = 1; a = b; }
getStmt(2)’s result is the expression statement a = b.
getStmt(2)
a = b
Stmt getStmt(int n)