33 lines
811 B
Go
33 lines
811 B
Go
// Code generated by convertFourslash; DO NOT EDIT.
|
|
// To modify this test, run "npm run makemanual jsDocFunctionSignatures10"
|
|
|
|
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/microsoft/typescript-go/internal/fourslash"
|
|
"github.com/microsoft/typescript-go/internal/testutil"
|
|
)
|
|
|
|
func TestJsDocFunctionSignatures10(t *testing.T) {
|
|
fourslash.SkipIfFailing(t)
|
|
t.Parallel()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `// @allowJs: true
|
|
// @Filename: Foo.js
|
|
/**
|
|
* Do some foo things
|
|
* @template T A Foolish template
|
|
* @param {T} x a parameter
|
|
*/
|
|
function foo(x) {
|
|
}
|
|
|
|
fo/**/o()`
|
|
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
defer done()
|
|
f.GoToMarker(t, "")
|
|
f.VerifyQuickInfoIs(t, "function foo<any>(x: any): void", "Do some foo things")
|
|
}
|