summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Gerrand <adg@golang.org>2014-06-18 08:46:31 +1000
committerAndrew Gerrand <adg@golang.org>2014-06-18 08:46:31 +1000
commitc93d7b46d9f021de0bfe9cae4b8f9d4222642a4c (patch)
tree371bfff4be8903ca9f1f677bf7f3d7cee446f481
parent68dc067c50b5581f8c9517bc0901bf0ac65a4be5 (diff)
downloadgo-c93d7b46d9f021de0bfe9cae4b8f9d4222642a4c.tar.gz
[release-branch.go1.3] doc: add release note for 'godoc -analysis'
??? CL 88560044 / d011c0dcae9c doc: add release note for 'godoc -analysis' Contains a link to /lib/godoc/analysis/help.html which is not yet live. LGTM=r R=r, adg CC=golang-codereviews https://codereview.appspot.com/88560044 ??? TBR=rsc R=golang-codereviews CC=golang-codereviews https://codereview.appspot.com/104150043
-rw-r--r--doc/go1.3.html18
1 files changed, 17 insertions, 1 deletions
diff --git a/doc/go1.3.html b/doc/go1.3.html
index 685d23310..ae5c02598 100644
--- a/doc/go1.3.html
+++ b/doc/go1.3.html
@@ -295,6 +295,23 @@ For example,
(The same change was made to the compilers and linkers in <a href="/doc/go1.1#gc_flag">Go 1.1</a>.)
</p>
+<h3 id="godoc">Changes to godoc</h3>
+<p>
+When invoked with the <code>-analysis</code> flag,
+<a href="http://godoc.org/code.google.com/p/go.tools/cmd/godoc">godoc</a>
+now performs sophisticated <a href="/lib/godoc/analysis/help.html">static
+analysis</a> of the code it indexes.
+The results of analysis are presented in both the source view and the
+package documentation view, and include the call graph of each package
+and the relationships between
+definitions and references,
+types and their methods,
+interfaces and their implementations,
+send and receive operations on channels,
+functions and their callers, and
+call sites and their callees.
+</p>
+
<h3 id="misc">Miscellany</h3>
<p>
@@ -309,7 +326,6 @@ For the few of us that build Go distributions, the tool <code>misc/dist</code> h
moved and renamed; it now lives in <code>misc/makerelease</code>, still in the main repository.
</p>
-
<h2 id="performance">Performance</h2>
<p>