/// <summary> /// Initializes a new instance of the <see cref="Tptr"/> class. /// </summary> /// <param name="ptrKind">The kind of pointer.</param> /// <param name="type">The type associated with the underlying expression.</param> public Tptr(PtrKind ptrKind, Typ type) { Kind = ptrKind; Type = type; }
/// <summary> /// Initializes a new instance of the <see cref="Tarray"/> class. /// </summary> /// <param name="contentType">Type of the array's elements.</param> public Tarray(Typ contentType) { ContentType = contentType; }