From: Robert Griesemer Date: Mon, 29 Mar 2021 19:22:01 +0000 (-0700) Subject: cmd/compile/internal/types2: review of resolver.go X-Git-Tag: go1.17beta1~872 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=6454b2720f;p=gostls13.git cmd/compile/internal/types2: review of resolver.go The changes between (equivalent, and reviewed) go/types/resolver.go and resolver.go can be seen by comparing patchset 1 and 2. The actual changes are removing the "// UNREVIEWED" marker. The primary differences compared to go/types are: - use of syntax rather than go/ast package - not using a walkDecl abstraction for const/var/type declarations Change-Id: Id8d7b069813149ca4eadbb61d1124b22c56a91b1 Reviewed-on: https://go-review.googlesource.com/c/go/+/305572 Trust: Robert Griesemer Run-TryBot: Robert Griesemer TryBot-Result: Go Bot Reviewed-by: Robert Findley --- diff --git a/src/cmd/compile/internal/types2/resolver.go b/src/cmd/compile/internal/types2/resolver.go index 79938964c1..3aca2bcb3c 100644 --- a/src/cmd/compile/internal/types2/resolver.go +++ b/src/cmd/compile/internal/types2/resolver.go @@ -1,4 +1,3 @@ -// UNREVIEWED // Copyright 2013 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file.