2017-05-11 14:39:54 +00:00
|
|
|
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT.
|
|
|
|
|
|
|
|
package language
|
|
|
|
|
|
|
|
// This file contains code common to the maketables.go and the package code.
|
|
|
|
|
2018-05-02 16:09:45 +00:00
|
|
|
// langAliasType is the type of an alias in langAliasMap.
|
|
|
|
type langAliasType int8
|
2017-05-11 14:39:54 +00:00
|
|
|
|
|
|
|
const (
|
2018-05-02 16:09:45 +00:00
|
|
|
langDeprecated langAliasType = iota
|
|
|
|
langMacro
|
|
|
|
langLegacy
|
2017-05-11 14:39:54 +00:00
|
|
|
|
2018-05-02 16:09:45 +00:00
|
|
|
langAliasTypeUnknown langAliasType = -1
|
2017-05-11 14:39:54 +00:00
|
|
|
)
|