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

35 lines
854 B
Go

// Code generated by convertFourslash; DO NOT EDIT.
// To modify this test, run "npm run makemanual getOccurrencesThrow6"
package fourslash_test
import (
"testing"
"github.com/microsoft/typescript-go/internal/fourslash"
. "github.com/microsoft/typescript-go/internal/fourslash/tests/util"
"github.com/microsoft/typescript-go/internal/testutil"
)
func TestGetOccurrencesThrow6(t *testing.T) {
fourslash.SkipIfFailing(t)
t.Parallel()
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
const content = `[|throw|] 100;
try {
throw 0;
var x = () => { throw 0; };
}
catch (y) {
var x = () => { throw 0; };
[|throw|] 200;
}
finally {
[|throw|] 300;
}`
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
defer done()
f.VerifyBaselineDocumentHighlights(t, nil /*preferences*/, ToAny(f.Ranges())...)
}