blob: c419ceeb19107bc0316449e199fc901808e933f5 [file] [log] [blame]
William Kurkianea869482019-04-09 15:16:11 -04001// 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// +build ignore
6
7package main
8
9// This file contains code common to the maketables.go and the package code.
10
Abhilash S.L3b494632019-07-16 15:51:09 +053011// AliasType is the type of an alias in AliasMap.
12type AliasType int8
William Kurkianea869482019-04-09 15:16:11 -040013
14const (
Abhilash S.L3b494632019-07-16 15:51:09 +053015 Deprecated AliasType = iota
16 Macro
17 Legacy
William Kurkianea869482019-04-09 15:16:11 -040018
Abhilash S.L3b494632019-07-16 15:51:09 +053019 AliasTypeUnknown AliasType = -1
William Kurkianea869482019-04-09 15:16:11 -040020)