package fourslash_test import ( "testing" "github.com/microsoft/typescript-go/internal/fourslash" "github.com/microsoft/typescript-go/internal/testutil" ) func TestDocumentHighlightYield(t *testing.T) { t.Parallel() defer testutil.RecoverAndFail(t, "Panic on fourslash test") const content = ` // @Filename: /a.ts class C { async *[Symbol.asyncIterator]() { [|yield|] { type: 'type', }; } } ` f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content) defer done() f.VerifyBaselineDocumentHighlights(t, nil /*preferences*/, f.Ranges()[0]) }