This commit is contained in:
Bel LaPointe
2020-05-18 14:57:30 -06:00
commit e373627c09
82 changed files with 175690 additions and 0 deletions

16
vendor/golang.org/x/text/internal/language/common.go generated vendored Executable file
View File

@@ -0,0 +1,16 @@
// 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.
// AliasType is the type of an alias in AliasMap.
type AliasType int8
const (
Deprecated AliasType = iota
Macro
Legacy
AliasTypeUnknown AliasType = -1
)