new AttributeBuilder(f).Static().toAttributes(),
f.newBlock(statements));
}
private Expression createNewPropertyDescriptor(PropertyDeclaration property) {
Expression columnName = Models.toLiteral(f, HiveFieldTrait.getColumnName(property));
Expression typeDesc = computeValueType(property);
Expression comment = null;
AstDescription description = property.getDescription();
if (description == null) {
comment = Models.toNullLiteral(f);
} else {
comment = Models.toLiteral(f, description.getText());