vendor tsgo
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
// Code generated by convertFourslash; DO NOT EDIT.
|
||||
// To modify this test, run "npm run makemanual inlayHintsJsDocParameterNames"
|
||||
|
||||
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 TestInlayHintsJsDocParameterNames(t *testing.T) {
|
||||
fourslash.SkipIfFailing(t)
|
||||
t.Parallel()
|
||||
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
||||
const content = `// @allowJs: true
|
||||
// @checkJs: true
|
||||
// @Filename: /a.js
|
||||
var x
|
||||
x.foo(1, 2);
|
||||
/**
|
||||
* @type {{foo: (a: number, b: number) => void}}
|
||||
*/
|
||||
var y
|
||||
y.foo(1, 2)
|
||||
/**
|
||||
* @type {string}
|
||||
*/
|
||||
var z = ""`
|
||||
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
||||
defer done()
|
||||
f.GoToFile(t, "/a.js")
|
||||
f.VerifyBaselineInlayHints(t, nil /*span*/, &lsutil.UserPreferences{InlayHints: lsutil.InlayHintsPreferences{IncludeInlayParameterNameHints: lsutil.IncludeInlayParameterNameHintsLiterals}})
|
||||
}
|
||||
Reference in New Issue
Block a user