]> Cypherpunks repositories - gostls13.git/commit
[dev.regabi] cmd/compile: cleanup assignment typechecking
authorMatthew Dempsky <mdempsky@google.com>
Thu, 24 Dec 2020 00:14:59 +0000 (16:14 -0800)
committerMatthew Dempsky <mdempsky@google.com>
Fri, 25 Dec 2020 09:18:20 +0000 (09:18 +0000)
commit396b6c2e7c5c368c67e71824471d4f2d48f5c128
tree222c878df5c18a10dfe33a0538f313fb946592c8
parente24d2f3d0513961441904afdf71cafe7808c0be9
[dev.regabi] cmd/compile: cleanup assignment typechecking

The assignment type-checking code previously bounced around a lot
between the LHS and RHS sides of the assignment. But there's actually
a very simple, consistent pattern to how to type check assignments:

1. Check the RHS expression.

2. If the LHS expression is an identifier that was declared in this
statement and it doesn't have an explicit type, give it the RHS
expression's default type.

3. Check the LHS expression.

4. Try assigning the RHS expression to the LHS expression, adding
implicit conversions as needed.

This CL implements this algorithm, and refactors tcAssign and
tcAssignList to use a common implementation. It also fixes the error
messages to consistently say just "1 variable" or "1 value", rather
than occasionally "1 variables" or "1 values".

Fixes #43348.

Passes toolstash -cmp.

Change-Id: I749cb8d6ccbc7d22cd7cb0a381f58a39fc2696b5
Reviewed-on: https://go-review.googlesource.com/c/go/+/280112
Trust: Matthew Dempsky <mdempsky@google.com>
Run-TryBot: Matthew Dempsky <mdempsky@google.com>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Cuong Manh Le <cuong.manhle.vn@gmail.com>
src/cmd/compile/internal/typecheck/stmt.go
src/cmd/compile/internal/typecheck/typecheck.go
test/fixedbugs/issue27595.go
test/fixedbugs/issue30087.go
test/used.go