public void endVisit(JLocalDeclarationStatement x, Context ctx) {
JExpression newInst = x.getInitializer();
if (newInst != null) {
newInst = checkAndReplaceJso(newInst, x.getLocalRef().getType());
if (newInst != x.getInitializer()) {
JLocalDeclarationStatement newStmt = new JLocalDeclarationStatement(
program, x.getSourceInfo(), x.getLocalRef(), newInst);
ctx.replaceMe(newStmt);
}
}
}