33 lines
908 B
Go
33 lines
908 B
Go
// Code generated by convertFourslash; DO NOT EDIT.
|
|
// To modify this test, run "npm run makemanual docCommentTemplateClassDecl01"
|
|
|
|
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/microsoft/typescript-go/internal/fourslash"
|
|
"github.com/microsoft/typescript-go/internal/testutil"
|
|
)
|
|
|
|
func TestDocCommentTemplateClassDecl01(t *testing.T) {
|
|
fourslash.SkipIfFailing(t)
|
|
t.Parallel()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `/*decl*/class C {
|
|
private p;
|
|
constructor(a, b, c, d);
|
|
constructor(public a, private b, protected c, d, e?) {
|
|
}
|
|
|
|
foo();
|
|
foo(a?, b?, ...args) {
|
|
}
|
|
}`
|
|
capabilities := fourslash.GetDefaultCapabilities()
|
|
capabilities.TextDocument.Completion.CompletionItem.SnippetSupport = new(false)
|
|
f, done := fourslash.NewFourslash(t, capabilities, content)
|
|
defer done()
|
|
f.VerifyJSDocCompletion(t, "decl", 3, `/** */`, nil)
|
|
}
|