29 lines
838 B
Go
29 lines
838 B
Go
// Code generated by convertFourslash; DO NOT EDIT.
|
|
// To modify this test, run "npm run makemanual goToDefinitionLabels"
|
|
|
|
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/microsoft/typescript-go/internal/fourslash"
|
|
"github.com/microsoft/typescript-go/internal/testutil"
|
|
)
|
|
|
|
func TestGoToDefinitionLabels(t *testing.T) {
|
|
fourslash.SkipIfFailing(t)
|
|
t.Parallel()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `/*label1Definition*/label1: while (true) {
|
|
/*label2Definition*/label2: while (true) {
|
|
break [|/*1*/label1|];
|
|
continue [|/*2*/label2|];
|
|
() => { break [|/*3*/label1|]; }
|
|
continue /*4*/unknownLabel;
|
|
}
|
|
}`
|
|
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
defer done()
|
|
f.VerifyBaselineGoToDefinition(t, true, "1", "2", "3", "4")
|
|
}
|