diff --git a/docgen/docgen.go b/docgen/docgen.go index d13176a67..2015e9e89 100644 --- a/docgen/docgen.go +++ b/docgen/docgen.go @@ -57,6 +57,9 @@ func CreateDoc(i interface{}) *Context { } for name, t := range conf.CreateTypesTable(i) { + if t.Ambiguous { + continue + } c.Variables[Identifier(name)] = c.use(t.Type, fromMethod(t.Method)) } diff --git a/docgen/docgen_test.go b/docgen/docgen_test.go index 82608e551..65bdfbeea 100644 --- a/docgen/docgen_test.go +++ b/docgen/docgen_test.go @@ -132,6 +132,54 @@ func TestCreateDoc(t *testing.T) { assert.Equal(t, litter.Sdump(expected), litter.Sdump(doc)) } +type A struct { + AmbiguousField int + OkField int +} +type B struct { + AmbiguousField string +} +type EnvAmbiguous struct { + A + B +} + +func TestCreateDoc_Ambiguous(t *testing.T) { + doc := CreateDoc(&EnvAmbiguous{}) + expected := &Context{ + Variables: map[Identifier]*Type{ + "A": { + Kind: "struct", + Name: "A", + }, + "B": { + Kind: "struct", + Name: "B", + }, + "OkField": { + Kind: "int", + }, + }, + Types: map[TypeName]*Type{ + "A": { + Kind: "struct", + Fields: map[Identifier]*Type{ + "AmbiguousField": {Kind: "int"}, + "OkField": {Kind: "int"}, + }, + }, + "B": { + Kind: "struct", + Fields: map[Identifier]*Type{ + "AmbiguousField": {Kind: "string"}, + }, + }, + }, + } + + assert.Equal(t, litter.Sdump(expected), litter.Sdump(doc)) +} + func TestCreateDoc_FromMap(t *testing.T) { env := map[string]interface{}{ "Tweets": []*Tweet{},