blob: 5266ab8a93557c37d9c6bc5ae6ac47f95781e2dc [file] [log] [blame]
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package templates
const Union = `
{{- define "UnionDeclaration" }}
fidl_xunion! {
{{- range .DocComments}}
///{{ . }}
{{- end}}
{{ .Derives }}
name: {{ .Name }},
members: [
{{- range .Members }}
{{- range .DocComments }}
///{{ . }}
{{- end}}
{{ .Name }} {
ty: {{ .Type }},
ordinal: {{ .Ordinal }},
},
{{- end }}
],
{{- if not .Strictness }}
unknown_member: __UnknownVariant,
{{- end }}
}
{{- end }}
`