From 0b4de7aa8a58e61c5cdee7f2d06e018b77efc84a Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Mon, 9 Nov 2009 16:09:57 -0800 Subject: [PATCH] comment out red TODO clauses except for the last one R=rsc CC=go-dev http://go/go-review/1024037 --- doc/go_spec.html | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/doc/go_spec.html b/doc/go_spec.html index 376046b77d..203f036a82 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -1870,9 +1870,11 @@ package, which means that it must begin with a Unicode upper case letter. math.Sin +

Composite literals

@@ -2223,9 +2225,11 @@ p.M0 // ((*p).T0).M0 +

Indexes

@@ -2811,7 +2815,7 @@ that is, either a variable, pointer indirection, array or slice indexing operation, or a field selector of an addressable struct operand. A function result variable is not addressable. -(TODO: remove this restriction.) + Given an operand of pointer type, the pointer indirection operator * retrieves the value pointed to by the operand. @@ -2912,10 +2916,12 @@ to false and x is set to the zero value for its type (§The zero value).

+

Method expressions

@@ -3192,6 +3198,7 @@ int8(^1) // same as int8(-2) ^int8(1) // same as -1 ^ int8(1) = -2 +

Order of evaluation

@@ -3931,6 +3938,7 @@ func complex_f3() (re float, im float) { +

Break statements

@@ -4009,7 +4018,9 @@ L:

is erroneous because the jump to label L skips the creation of v. +

Fallthrough statements

-- 2.50.0