Files
kjol/tools/tsgo/internal/fourslash/tests/gen/findReferencesDefinitionDisplayParts_test.go
2026-07-09 16:50:43 -04:00

30 lines
801 B
Go

// Code generated by convertFourslash; DO NOT EDIT.
// To modify this test, run "npm run makemanual findReferencesDefinitionDisplayParts"
package fourslash_test
import (
"testing"
"github.com/microsoft/typescript-go/internal/fourslash"
"github.com/microsoft/typescript-go/internal/testutil"
)
func TestFindReferencesDefinitionDisplayParts(t *testing.T) {
fourslash.SkipIfFailing(t)
t.Parallel()
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
const content = `class Gre/*1*/eter {
someFunction() { th/*2*/is; }
}
type Options = "opt/*3*/ion 1" | "option 2";
let myOption: Options = "option 1";
some/*4*/Label:
break someLabel;`
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
defer done()
f.VerifyBaselineFindAllReferences(t, "1", "2", "3", "4")
}