Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

21 wiersze
429 B

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