blob: c419ceeb19107bc0316449e199fc901808e933f5 [file] [log] [blame]
Don Newton98fd8812019-09-23 15:15:02 -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
11// AliasType is the type of an alias in AliasMap.
12type AliasType int8
13
14const (
15 Deprecated AliasType = iota
16 Macro
17 Legacy
18
19 AliasTypeUnknown AliasType = -1
20)