using Gee;
using Valadoc.Content;
+
+/**
+ * Represents an array declaration.
+ */
public class Valadoc.Api.Array : Item {
private Vala.ArrayType vtype;
+ /**
+ * The element type.
+ */
public Item data_type {
private set;
get;
}
}
+ /**
+ * {@inheritDoc}
+ */
internal override void resolve_type_references (Tree root) {
if (this.data_type == null) {
/*TODO:possible?*/;
}
}
+ /**
+ * {@inheritDoc}
+ */
protected override Inline build_signature () {
return new SignatureBuilder ()
.append_content (data_type.signature)