gen_common.go 447 B

123456789101112131415161718192021
  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. //go:build ignore
  5. // +build ignore
  6. package main
  7. // This file contains code common to the maketables.go and the package code.
  8. // AliasType is the type of an alias in AliasMap.
  9. type AliasType int8
  10. const (
  11. Deprecated AliasType = iota
  12. Macro
  13. Legacy
  14. AliasTypeUnknown AliasType = -1
  15. )