mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
Most changes are removing redundant declaration of type when direct
instantiating value of map or slice, e.g. []T{T{}} become []T{{}}.
Small changes are removing the high order of subslice if its value
is the length of slice itself, e.g. T[:len(T)] become T[:].
The following file is excluded due to incompatibility with go1.4,
- src/cmd/compile/internal/gc/ssa.go
Change-Id: Id3abb09401795ce1e6da591a89749cba8502fb26
Reviewed-on: https://go-review.googlesource.com/c/go/+/166437
Run-TryBot: Dave Cheney <dave@cheney.net>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
|
||
|---|---|---|
| .. | ||
| annotations.go | ||
| annotations_test.go | ||
| doc.go | ||
| goroutines.go | ||
| main.go | ||
| mmu.go | ||
| pprof.go | ||
| trace.go | ||
| trace_test.go | ||
| trace_unix_test.go | ||