mirror of
https://github.com/golang/go
synced 2024-11-23 00:00:07 -07:00
cmd/compile/internal/types2: enable TestIssue25627
Since we have syntax.Walk, we can make this test work again. Change-Id: I55cbde7303e5bcbe1123b6679f2ce859d377fd86 Reviewed-on: https://go-review.googlesource.com/c/go/+/294472 Trust: Robert Griesemer <gri@golang.org> Reviewed-by: Robert Findley <rfindley@google.com>
This commit is contained in:
parent
1901e2647f
commit
378f73e2d5
@ -300,8 +300,6 @@ func TestIssue22525(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func TestIssue25627(t *testing.T) {
|
func TestIssue25627(t *testing.T) {
|
||||||
t.Skip("requires syntax tree inspection")
|
|
||||||
|
|
||||||
const prefix = `package p; import "unsafe"; type P *struct{}; type I interface{}; type T `
|
const prefix = `package p; import "unsafe"; type P *struct{}; type I interface{}; type T `
|
||||||
// The src strings (without prefix) are constructed such that the number of semicolons
|
// The src strings (without prefix) are constructed such that the number of semicolons
|
||||||
// plus one corresponds to the number of fields expected in the respective struct.
|
// plus one corresponds to the number of fields expected in the respective struct.
|
||||||
@ -325,20 +323,17 @@ func TestIssue25627(t *testing.T) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
unimplemented()
|
syntax.Walk(f, func(n syntax.Node) bool {
|
||||||
/*
|
if decl, _ := n.(*syntax.TypeDecl); decl != nil {
|
||||||
ast.Inspect(f, func(n syntax.Node) bool {
|
if tv, ok := info.Types[decl.Type]; ok && decl.Name.Value == "T" {
|
||||||
if spec, _ := n.(*syntax.TypeDecl); spec != nil {
|
|
||||||
if tv, ok := info.Types[spec.Type]; ok && spec.Name.Value == "T" {
|
|
||||||
want := strings.Count(src, ";") + 1
|
want := strings.Count(src, ";") + 1
|
||||||
if got := tv.Type.(*Struct).NumFields(); got != want {
|
if got := tv.Type.(*Struct).NumFields(); got != want {
|
||||||
t.Errorf("%s: got %d fields; want %d", src, got, want)
|
t.Errorf("%s: got %d fields; want %d", src, got, want)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return true
|
return false
|
||||||
})
|
})
|
||||||
*/
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user