2018-01-25 13:08:43 +00:00
|
|
|
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT.
|
2016-06-14 16:17:44 +00:00
|
|
|
|
|
|
|
package language
|
|
|
|
|
|
|
|
// This file contains code common to the maketables.go and the package code.
|
|
|
|
|
2019-06-09 07:24:20 +00:00
|
|
|
// AliasType is the type of an alias in AliasMap.
|
|
|
|
type AliasType int8
|
2016-06-14 16:17:44 +00:00
|
|
|
|
|
|
|
const (
|
2019-06-09 07:24:20 +00:00
|
|
|
Deprecated AliasType = iota
|
|
|
|
Macro
|
|
|
|
Legacy
|
2016-06-14 16:17:44 +00:00
|
|
|
|
2019-06-09 07:24:20 +00:00
|
|
|
AliasTypeUnknown AliasType = -1
|
2016-06-14 16:17:44 +00:00
|
|
|
)
|