mirror of
https://github.com/dolthub/dolt.git
synced 2026-01-28 18:59:00 -06:00
12 lines
255 B
Cheetah
12 lines
255 B
Cheetah
// {{.Name}}
|
|
|
|
type {{.Name}} uint32
|
|
|
|
{{$name := .Name}}
|
|
const ({{range $index, $id := .Ids}}
|
|
{{title $id}}{{if eq $index 0}} {{$name}} = iota{{end}}{{end}}
|
|
)
|
|
|
|
// A Noms Value that describes {{.Name}}.
|
|
var __typeRefFor{{.Name}} = {{toTypesTypeRef .Type}}
|