kittenipc/kitcom/internal/tsgo/fourslash/tests/gen/quickInfoDisplayPartsLet_test.go
2025-10-15 10:12:44 +03:00

38 lines
788 B
Go

package fourslash_test
import (
"testing"
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash"
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil"
)
func TestQuickInfoDisplayPartsLet(t *testing.T) {
t.Parallel()
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
const content = `let /*1*/a = 10;
function foo() {
let /*2*/b = /*3*/a;
if (b) {
let /*4*/b1 = 10;
}
}
module m {
let /*5*/c = 10;
export let /*6*/d = 10;
if (c) {
let /*7*/e = 10;
}
}
let /*8*/f: () => number;
let /*9*/g = /*10*/f;
/*11*/f();
let /*12*/h: { (a: string): number; (a: number): string; };
let /*13*/i = /*14*/h;
/*15*/h(10);
/*16*/h("hello");`
f := fourslash.NewFourslash(t, nil /*capabilities*/, content)
f.VerifyBaselineHover(t)
}