Member predicate LocalVariableDeclStmt::getVariableDeclExpr
Gets the n
th local variable declaration. For example, the second
(n = 1
) declaration is y = ""
in
void M() {
string x = null, y = "";
}
Gets the n
th local variable declaration. For example, the second
(n = 1
) declaration is y = ""
in
void M() {
string x = null, y = "";
}