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

36 lines
1.0 KiB
Go

// Code generated by convertFourslash; DO NOT EDIT.
// To modify this test, run "npm run makemanual syntacticClassificationsFunctionWithComments"
package fourslash_test
import (
"testing"
"github.com/microsoft/typescript-go/internal/fourslash"
"github.com/microsoft/typescript-go/internal/testutil"
)
func TestSyntacticClassificationsFunctionWithComments(t *testing.T) {
fourslash.SkipIfFailing(t)
t.Parallel()
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
const content = `/**
* This is my function.
* There are many like it, but this one is mine.
*/
function myFunction(/* x */ x: any) {
var y = x ? x++ : ++x;
}
// end of file`
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
defer done()
f.VerifySemanticTokens(t, []fourslash.SemanticToken{
{Type: "function.declaration", Text: "myFunction"},
{Type: "parameter.declaration", Text: "x"},
{Type: "variable.declaration.local", Text: "y"},
{Type: "parameter", Text: "x"},
{Type: "parameter", Text: "x"},
{Type: "parameter", Text: "x"},
})
}