public Type(Identifier identifier, Type type) { Name = identifier.Value; GenericType = type; GenericType.Parent = this; }
public Argument(Identifier identifier, Type type) { Name = identifier.Value; Type = type; Type.Parent = this; }