vendor tsgo
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
// Code generated by convertFourslash; DO NOT EDIT.
|
||||
// To modify this test, run "npm run makemanual inlayHintsOverloadCall2"
|
||||
|
||||
package fourslash_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/microsoft/typescript-go/internal/fourslash"
|
||||
"github.com/microsoft/typescript-go/internal/ls/lsutil"
|
||||
"github.com/microsoft/typescript-go/internal/testutil"
|
||||
)
|
||||
|
||||
func TestInlayHintsOverloadCall2(t *testing.T) {
|
||||
fourslash.SkipIfFailing(t)
|
||||
t.Parallel()
|
||||
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
||||
const content = `type HasID = {
|
||||
id: number;
|
||||
}
|
||||
|
||||
type Numbers = {
|
||||
n: number[];
|
||||
}
|
||||
|
||||
declare function func(bad1: number, bad2: HasID): void;
|
||||
declare function func(ok_1: Numbers, ok_2: HasID): void;
|
||||
|
||||
func(
|
||||
{ n: [1, 2, 3] },
|
||||
{
|
||||
id: 1,
|
||||
},
|
||||
);`
|
||||
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
||||
defer done()
|
||||
f.VerifyBaselineInlayHints(t, nil /*span*/, &lsutil.UserPreferences{InlayHints: lsutil.InlayHintsPreferences{IncludeInlayParameterNameHints: lsutil.IncludeInlayParameterNameHintsAll}})
|
||||
}
|
||||
Reference in New Issue
Block a user