]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/gc: another special (%hhS) case for method names.
authorLuuk van Dijk <lvd@golang.org>
Mon, 6 Feb 2012 15:38:59 +0000 (16:38 +0100)
committerLuuk van Dijk <lvd@golang.org>
Mon, 6 Feb 2012 15:38:59 +0000 (16:38 +0100)
Fixes #2877

R=rsc
CC=golang-dev
https://golang.org/cl/5637047

src/cmd/gc/fmt.c
test/fixedbugs/bug407.dir/one.go [new file with mode: 0644]
test/fixedbugs/bug407.dir/two.go [new file with mode: 0644]
test/fixedbugs/bug407.go [new file with mode: 0644]

index 35d33bce87f516e71f6751fcdd5eecb8744faf39..5437dac1dba08bda2c408220b2733888d5f8eafd 100644 (file)
@@ -1097,6 +1097,16 @@ exprfmt(Fmt *f, Node *n, int prec)
                return fmtprint(f, "%V", &n->val);
 
        case ONAME:
+               // Special case: explicit name of func (*T) method(...) is turned into pkg.(*T).method,
+               // but for export, this should be rendered as (*pkg.T).meth.
+               // These nodes have the special property that they are names with a left OTYPE and a right ONAME.
+               if(fmtmode == FExp && n->left && n->left->op == OTYPE && n->right && n->right->op == ONAME) {
+                       if(isptr[n->left->type->etype])
+                               return fmtprint(f, "(%T).%hhS", n->left->type, n->right->sym);
+                       else
+                               return fmtprint(f, "%T.%hhS", n->left->type, n->right->sym);
+               }
+               //fallthrough
        case OPACK:
        case ONONAME:
                return fmtprint(f, "%S", n->sym);
diff --git a/test/fixedbugs/bug407.dir/one.go b/test/fixedbugs/bug407.dir/one.go
new file mode 100644 (file)
index 0000000..a91d904
--- /dev/null
@@ -0,0 +1,20 @@
+// Copyright 2012 The Go Authors.  All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+package one
+
+// Issue 2877
+type T struct {
+       f func(t *T, arg int)
+       g func(t T, arg int)
+}
+
+func (t *T) foo(arg int) {}
+func (t T) goo(arg int) {}
+
+func (t *T) F() { t.f = (*T).foo }
+func (t *T) G() { t.g = T.goo }
+
+
+
diff --git a/test/fixedbugs/bug407.dir/two.go b/test/fixedbugs/bug407.dir/two.go
new file mode 100644 (file)
index 0000000..67e1852
--- /dev/null
@@ -0,0 +1,15 @@
+// Copyright 2012 The Go Authors.  All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+// Use the functions in one.go so that the inlined
+// forms get type-checked.
+
+package two
+
+import "./one"
+
+func use() {
+       var r one.T
+       r.F()
+}
diff --git a/test/fixedbugs/bug407.go b/test/fixedbugs/bug407.go
new file mode 100644 (file)
index 0000000..50af600
--- /dev/null
@@ -0,0 +1,7 @@
+// $G $D/$F.dir/one.go && $G $D/$F.dir/two.go
+
+// Copyright 2011 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+package ignored