blob: 429b9cde3175445c362c5389184c99868dc71792 [file] [log] [blame]
// Copyright 2018 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 codegen
const constTemplate = `
{{- define "ConstDeclaration" }}
{{range .DocComments}}
///{{ . }}
{{- end}}
{{- if .Extern }}
extern {{ .Decorator }} {{ .Type.Decl }} {{ .Name }};
{{- else }}
{{ .Decorator }} {{ .Type.Decl }} {{ .Name }} = {{ .Value }};
{{- end }}
{{- end }}
{{- define "ConstDefinition" }}
{{- if .Extern }}
{{ .Decorator }} {{ .Type.Decl }} {{ .Name }} = {{ .Value }};
{{- end }}
{{- end }}
`