aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/compile/internal/syntax/nodes.go
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2016-10-21 17:23:01 -0700
committerRobert Griesemer <gri@golang.org>2016-10-25 00:54:30 +0000
commitc0e2318f7c9a83b237a08b208eb145d520e3a233 (patch)
treeceb1e16cb754aa69b619beef830ec59803bbe80c /src/cmd/compile/internal/syntax/nodes.go
parent1b0cf430dd130ad53e9f43bc04d2ed91bcd87b26 (diff)
downloadgo-c0e2318f7c9a83b237a08b208eb145d520e3a233.tar.gz
go-c0e2318f7c9a83b237a08b208eb145d520e3a233.zip
cmd/compile: simplify parsing of type aliases
Change-Id: Ia86841cf84bc17ff6ecc6e5ac4cec86384a0da00 Reviewed-on: https://go-review.googlesource.com/31719 Reviewed-by: Matthew Dempsky <mdempsky@google.com>
Diffstat (limited to 'src/cmd/compile/internal/syntax/nodes.go')
-rw-r--r--src/cmd/compile/internal/syntax/nodes.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/cmd/compile/internal/syntax/nodes.go b/src/cmd/compile/internal/syntax/nodes.go
index 792b207ef1..b88d16e113 100644
--- a/src/cmd/compile/internal/syntax/nodes.go
+++ b/src/cmd/compile/internal/syntax/nodes.go
@@ -89,7 +89,6 @@ type (
TypeDecl struct {
Name *Name
Type Expr
- Alias bool
Group *Group // nil means not part of a group
Pragma Pragma
decl