Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

21 строка
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. )