write_type (expr.type_reference);
- if (expr.constructor.name != ".new") {
+ if (expr.symbol_reference.name != ".new") {
write_string (".");
- write_string (expr.constructor.name);
+ write_string (expr.symbol_reference.name);
}
write_string (" (");
}
}
- /**
- * The construction method to use. May be null to indicate that
- * the default construction method should be used.
- */
- public Method constructor { get; set; }
-
/**
* The construction method to use or the data type to be created
* with the default construction method.