vendor tsgo
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
// Code generated by convertFourslash; DO NOT EDIT.
|
||||
// To modify this test, run "npm run makemanual semanticModernClassificationClassProperties"
|
||||
|
||||
package fourslash_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/microsoft/typescript-go/internal/fourslash"
|
||||
"github.com/microsoft/typescript-go/internal/testutil"
|
||||
)
|
||||
|
||||
func TestSemanticModernClassificationClassProperties(t *testing.T) {
|
||||
fourslash.SkipIfFailing(t)
|
||||
t.Parallel()
|
||||
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
||||
const content = `class A {
|
||||
private y: number;
|
||||
constructor(public x : number, _y : number) { this.y = _y; }
|
||||
get z() : number { return this.x + this.y; }
|
||||
set a(v: number) { }
|
||||
}`
|
||||
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
||||
defer done()
|
||||
f.VerifySemanticTokens(t, []fourslash.SemanticToken{
|
||||
{Type: "class.declaration", Text: "A"},
|
||||
{Type: "property.declaration", Text: "y"},
|
||||
{Type: "parameter.declaration", Text: "x"},
|
||||
{Type: "parameter.declaration", Text: "_y"},
|
||||
{Type: "property", Text: "y"},
|
||||
{Type: "parameter", Text: "_y"},
|
||||
{Type: "property.declaration", Text: "z"},
|
||||
{Type: "property", Text: "x"},
|
||||
{Type: "property", Text: "y"},
|
||||
{Type: "property.declaration", Text: "a"},
|
||||
{Type: "parameter.declaration", Text: "v"},
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user