31 lines
911 B
Go
31 lines
911 B
Go
// Code generated by convertFourslash; DO NOT EDIT.
|
|
// To modify this test, run "npm run makemanual jsDocFunctionSignatures6"
|
|
|
|
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/microsoft/typescript-go/internal/fourslash"
|
|
"github.com/microsoft/typescript-go/internal/testutil"
|
|
)
|
|
|
|
func TestJsDocFunctionSignatures6(t *testing.T) {
|
|
fourslash.SkipIfFailing(t)
|
|
t.Parallel()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `// @allowJs: true
|
|
// @Filename: Foo.js
|
|
/**
|
|
* @param {string} p1 - A string param
|
|
* @param {string?} p2 - An optional param
|
|
* @param {string} [p3] - Another optional param
|
|
* @param {string} [p4="test"] - An optional param with a default value
|
|
*/
|
|
function f1(p1, p2, p3, p4){}
|
|
f1(/*1*/'foo', /*2*/'bar', /*3*/'baz', /*4*/'qux');`
|
|
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
defer done()
|
|
f.VerifyBaselineSignatureHelp(t)
|
|
}
|