From 51295c7ec13a7e2fccbbf0c405b35d07ff136e75 Mon Sep 17 00:00:00 2001 From: Michael Matloob Date: Tue, 8 Jan 2019 14:41:59 -0500 Subject: [PATCH] go/packages: update comment on when golist fallback triggers It triggers for all go versions before 1.11. We thought we might be able to backport some of the necessary changes to 1.10.4, but it was infeasible, so no 1.10.x versions will support the non-fallback behavior. Change-Id: Ib22be2715bf504464e4bd09c14453e5d132776f3 Reviewed-on: https://go-review.googlesource.com/c/156898 Reviewed-by: Ian Lance Taylor --- go/packages/golist_fallback.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/packages/golist_fallback.go b/go/packages/golist_fallback.go index 8e88607a..ca08cf7e 100644 --- a/go/packages/golist_fallback.go +++ b/go/packages/golist_fallback.go @@ -21,7 +21,7 @@ import ( // TODO(matloob): Delete this file once Go 1.12 is released. // This file provides backwards compatibility support for -// loading for versions of Go earlier than 1.10.4. This support is meant to +// loading for versions of Go earlier than 1.11. This support is meant to // assist with migration to the Package API until there's // widespread adoption of these newer Go versions. // This support will be removed once Go 1.12 is released