ingress-nginx-helm/vendor/golang.org/x/text/internal/language/common.go

17 lines
334 B
Go
Raw Normal View History

2017-09-29 17:12:14 +00:00
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT.
2016-11-10 22:57:28 +00:00
package language
// This file contains code common to the maketables.go and the package code.
2019-04-15 12:34:23 +00:00
// AliasType is the type of an alias in AliasMap.
type AliasType int8
2016-11-10 22:57:28 +00:00
const (
2019-04-15 12:34:23 +00:00
Deprecated AliasType = iota
Macro
Legacy
2016-11-10 22:57:28 +00:00
2019-04-15 12:34:23 +00:00
AliasTypeUnknown AliasType = -1
2016-11-10 22:57:28 +00:00
)