Files
kjol/tools/tsgo/internal/fourslash/tests/gen/docCommentTemplateVariableStatements01_test.go
2026-07-09 16:50:43 -04:00

65 lines
1.3 KiB
Go

// Code generated by convertFourslash; DO NOT EDIT.
// To modify this test, run "npm run makemanual docCommentTemplateVariableStatements01"
package fourslash_test
import (
"testing"
"github.com/microsoft/typescript-go/internal/fourslash"
"github.com/microsoft/typescript-go/internal/testutil"
)
func TestDocCommentTemplateVariableStatements01(t *testing.T) {
fourslash.SkipIfFailing(t)
t.Parallel()
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
const content = `/*a*/
var a = 10;
/*b*/
let b = "";
/*c*/
const c = 30;
/*d*/
let d = {
foo: 10,
bar: "20"
};
/*e*/
let e = function e(x, y, z) {
return +(x + y + z);
};
/*f*/
let f = class F {
constructor(a, b, c) {
this.a = a;
this.b = b || (this.c = c);
}
}`
capabilities := fourslash.GetDefaultCapabilities()
capabilities.TextDocument.Completion.CompletionItem.SnippetSupport = new(false)
f, done := fourslash.NewFourslash(t, capabilities, content)
defer done()
for _, varName := range []string{"a", "b", "c", "d"} {
f.VerifyJSDocCompletion(t, varName, 3, `/** */`, nil)
}
f.VerifyJSDocCompletion(t, "e", 7, `/**
*
* @param x
* @param y
* @param z
* @returns
*/`, nil)
f.VerifyJSDocCompletion(t, "f", 7, `/**
*
* @param a
* @param b
* @param c
*/`, nil)
}