From: Rob Findley Date: Thu, 17 Jun 2021 16:28:53 +0000 (-0400) Subject: doc/go1.17: document go/parser.SkipObjectResolution X-Git-Tag: go1.17rc1~74 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=1de332996c;p=gostls13.git doc/go1.17: document go/parser.SkipObjectResolution Documents the mode added in CL 306149 to skip object resolution. Fixes #46298 Change-Id: I6a14aaa00790f9f7e4e4ba17033355f5e878d74b Reviewed-on: https://go-review.googlesource.com/c/go/+/329009 Trust: Robert Findley Trust: Robert Griesemer Run-TryBot: Robert Findley TryBot-Result: Go Bot Reviewed-by: Robert Griesemer --- diff --git a/doc/go1.17.html b/doc/go1.17.html index 9452651295..50559c8933 100644 --- a/doc/go1.17.html +++ b/doc/go1.17.html @@ -693,6 +693,16 @@ func Foo() bool { +
go/parser
+
+

+ The new SkipObjectResolution + Mode value instructs the parser not to resolve identifiers to + their declaration. This may improve parsing speed. +

+
+
+
image