27 lines
638 B
Go
27 lines
638 B
Go
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash"
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil"
|
|
)
|
|
|
|
func TestRenameInheritedProperties8(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `class C implements D {
|
|
[|[|{| "contextRangeIndex": 0 |}prop1|]: string;|]
|
|
}
|
|
|
|
interface D extends C {
|
|
[|[|{| "contextRangeIndex": 2 |}prop1|]: string;|]
|
|
}
|
|
|
|
var c: C;
|
|
c.[|prop1|];`
|
|
f := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
f.VerifyBaselineRenameAtRangesWithText(t, nil /*preferences*/, "prop1")
|
|
}
|