mirror of
https://github.com/golang/go
synced 2024-11-14 19:50:21 -07:00
go/types, types: always record a type for inner composite literals
Ensure that inner composite literals get a (possibly invalid) type if something goes wrong with the enclosing composite literal. Fixes #69092. Change-Id: Ib1d2d529c4683ea3ab1799a818b43538e152ae8e Reviewed-on: https://go-review.googlesource.com/c/go/+/616616 Auto-Submit: Robert Griesemer <gri@google.com> Reviewed-by: Robert Griesemer <gri@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Alan Donovan <adonovan@google.com>
This commit is contained in:
parent
5b0f8596b7
commit
9593684438
@ -1141,3 +1141,29 @@ type (
|
||||
t.Errorf("got %s, want %s", got, want)
|
||||
}
|
||||
}
|
||||
|
||||
func TestIssue69092(t *testing.T) {
|
||||
const src = `
|
||||
package p
|
||||
|
||||
var _ = T{{x}}
|
||||
`
|
||||
|
||||
file := mustParse(src)
|
||||
conf := Config{Error: func(err error) {}} // ignore errors
|
||||
info := Info{Types: make(map[syntax.Expr]TypeAndValue)}
|
||||
conf.Check("p", []*syntax.File{file}, &info)
|
||||
|
||||
// look for {x} expression
|
||||
outer := file.DeclList[0].(*syntax.VarDecl).Values.(*syntax.CompositeLit) // T{{x}}
|
||||
inner := outer.ElemList[0] // {x}
|
||||
|
||||
// type of {x} must have been recorded
|
||||
tv, ok := info.Types[inner]
|
||||
if !ok {
|
||||
t.Fatal("no type found for {x}")
|
||||
}
|
||||
if tv.Type != Typ[Invalid] {
|
||||
t.Fatalf("unexpected type for {x}: %s", tv.Type)
|
||||
}
|
||||
}
|
||||
|
@ -137,8 +137,9 @@ func (check *Checker) compositeLit(x *operand, e *syntax.CompositeLit, hint Type
|
||||
default:
|
||||
// TODO(gri) provide better error messages depending on context
|
||||
check.error(e, UntypedLit, "missing type in composite literal")
|
||||
x.mode = invalid
|
||||
return
|
||||
// continue with invalid type so that elements are "used" (go.dev/issue/69092)
|
||||
typ = Typ[Invalid]
|
||||
base = typ
|
||||
}
|
||||
|
||||
switch utyp := coreType(base).(type) {
|
||||
|
@ -1151,3 +1151,30 @@ type (
|
||||
t.Errorf("got %s, want %s", got, want)
|
||||
}
|
||||
}
|
||||
|
||||
func TestIssue69092(t *testing.T) {
|
||||
const src = `
|
||||
package p
|
||||
|
||||
var _ = T{{x}}
|
||||
`
|
||||
|
||||
fset := token.NewFileSet()
|
||||
file := mustParse(fset, src)
|
||||
conf := Config{Error: func(err error) {}} // ignore errors
|
||||
info := Info{Types: make(map[ast.Expr]TypeAndValue)}
|
||||
conf.Check("p", fset, []*ast.File{file}, &info)
|
||||
|
||||
// look for {x} expression
|
||||
outer := file.Decls[0].(*ast.GenDecl).Specs[0].(*ast.ValueSpec).Values[0].(*ast.CompositeLit) // T{{x}}
|
||||
inner := outer.Elts[0] // {x}
|
||||
|
||||
// type of {x} must have been recorded
|
||||
tv, ok := info.Types[inner]
|
||||
if !ok {
|
||||
t.Fatal("no type found for {x}")
|
||||
}
|
||||
if tv.Type != Typ[Invalid] {
|
||||
t.Fatalf("unexpected type for {x}: %s", tv.Type)
|
||||
}
|
||||
}
|
||||
|
@ -141,8 +141,9 @@ func (check *Checker) compositeLit(x *operand, e *ast.CompositeLit, hint Type) {
|
||||
default:
|
||||
// TODO(gri) provide better error messages depending on context
|
||||
check.error(e, UntypedLit, "missing type in composite literal")
|
||||
x.mode = invalid
|
||||
return
|
||||
// continue with invalid type so that elements are "used" (go.dev/issue/69092)
|
||||
typ = Typ[Invalid]
|
||||
base = typ
|
||||
}
|
||||
|
||||
switch utyp := coreType(base).(type) {
|
||||
|
Loading…
Reference in New Issue
Block a user