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
8package 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.
13type AliasType int8
14
15const (
16	Deprecated AliasType = iota
17	Macro
18	Legacy
19
20	AliasTypeUnknown AliasType = -1
21)
22