From: Robert Griesemer Date: Mon, 29 Mar 2021 19:14:58 +0000 (-0700) Subject: cmd/compile/internal/types2: review of operand.go X-Git-Tag: go1.17beta1~906 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=135c9f45ecaec719bcc297ec9f9f19042bc9adf6;p=gostls13.git cmd/compile/internal/types2: review of operand.go The changes between (equivalent, and reviewed) go/types/operand.go and operand.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 - explicit mode for untyped nil (rather than relying on the type) Change-Id: I0c9c1c6153c55cb0550096bd966c9f0f1c766734 Reviewed-on: https://go-review.googlesource.com/c/go/+/305571 Trust: Robert Griesemer Reviewed-by: Robert Findley --- diff --git a/src/cmd/compile/internal/types2/operand.go b/src/cmd/compile/internal/types2/operand.go index 61ad0d00f8..455d8b5dd1 100644 --- a/src/cmd/compile/internal/types2/operand.go +++ b/src/cmd/compile/internal/types2/operand.go @@ -1,4 +1,3 @@ -// UNREVIEWED // Copyright 2012 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.