}
private IASTExpression convertCastExpression(final CastExpression castExpression) {
final int operator = ICPPASTCastExpression.op_static_cast;
final TypeInfo type = new TypeInfo(castExpression.getType(), compilationUnitInfo);
final ICPPASTTypeId typeId = f.newTypeId(type.getDeclSpecifier(), null);
final IASTExpression expr = new ExpressionInfo(castExpression.getExpression(), typeDeclaration, compilationUnitInfo).getExpression();
return f.newCastExpression(operator, typeId, expr);
}