github.com/go-enjin/golang-org-x-text@v0.12.1-enjin.2/internal/language/gen_common.go (about)

     1  // Copyright 2014 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  //go:build ignore
     6  // +build ignore
     7  
     8  package main
     9  
    10  // This file contains code common to the maketables.go and the package code.
    11  
    12  // AliasType is the type of an alias in AliasMap.
    13  type AliasType int8
    14  
    15  const (
    16  	Deprecated AliasType = iota
    17  	Macro
    18  	Legacy
    19  
    20  	AliasTypeUnknown AliasType = -1
    21  )