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

31 lines
765 B
Go

// Code generated by convertFourslash; DO NOT EDIT.
// To modify this test, run "npm run makemanual renameInheritedProperties7"
package fourslash_test
import (
"testing"
"github.com/microsoft/typescript-go/internal/fourslash"
"github.com/microsoft/typescript-go/internal/testutil"
)
func TestRenameInheritedProperties7(t *testing.T) {
fourslash.SkipIfFailing(t)
t.Parallel()
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
const content = `class C extends D {
[|[|{| "contextRangeIndex": 0 |}prop1|]: string;|]
}
class D extends C {
prop1: string;
}
var c: C;
c.[|prop1|];`
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
defer done()
f.VerifyBaselineRenameAtRangesWithText(t, nil /*preferences*/, "prop1")
}