38 lines
949 B
Go
38 lines
949 B
Go
// Code generated by convertFourslash; DO NOT EDIT.
|
|
// To modify this test, run "npm run makemanual jsDocDontBreakWithNamespaces"
|
|
|
|
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/microsoft/typescript-go/internal/fourslash"
|
|
"github.com/microsoft/typescript-go/internal/testutil"
|
|
)
|
|
|
|
func TestJsDocDontBreakWithNamespaces(t *testing.T) {
|
|
fourslash.SkipIfFailing(t)
|
|
t.Parallel()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `// @allowJs: true
|
|
// @Filename: jsDocDontBreakWithNamespaces.js
|
|
/**
|
|
* @returns {module:@nodefuel/web~Webserver~wsServer#hello} Websocket server object
|
|
*/
|
|
function foo() { }
|
|
foo(''/*foo*/);
|
|
|
|
/**
|
|
* @type {module:xxxxx} */
|
|
*/
|
|
function bar() { }
|
|
bar(''/*bar*/);
|
|
|
|
/** @type {function(module:xxxx, module:xxxx): module:xxxxx} */
|
|
function zee() { }
|
|
zee(''/*zee*/);`
|
|
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
defer done()
|
|
f.VerifyBaselineSignatureHelp(t)
|
|
}
|