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

50 lines
1.2 KiB
Go

// Code generated by convertFourslash; DO NOT EDIT.
// To modify this test, run "npm run makemanual codeFixClassImplementClassPropertyModifiers"
package fourslash_test
import (
"testing"
"github.com/microsoft/typescript-go/internal/fourslash"
"github.com/microsoft/typescript-go/internal/testutil"
)
func TestCodeFixClassImplementClassPropertyModifiers(t *testing.T) {
fourslash.SkipIfFailing(t)
t.Parallel()
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
const content = `// @strict: false
abstract class A {
abstract x: number;
private y: number;
protected z: number;
public w: number;
public useY() { this.y; }
}
class C implements A {[| |]}`
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
defer done()
f.VerifyCodeFix(t, fourslash.VerifyCodeFixOptions{
Description: "Implement interface 'A'",
NewFileContent: `abstract class A {
abstract x: number;
private y: number;
protected z: number;
public w: number;
public useY() { this.y; }
}
class C implements A {
x: number;
protected z: number;
public w: number;
public useY(): void {
throw new Error("Method not implemented.");
}
}`,
Index: 0,
})
}