package fourslash_test import ( "testing" "efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash" "efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil" ) func TestRenameJsSpecialAssignmentRhs2(t *testing.T) { t.Parallel() defer testutil.RecoverAndFail(t, "Panic on fourslash test") const content = `// @allowJs: true // @Filename: a.js const foo = { set: function (x) { this._x = x; }, copy: function ([|x|]) { this._x = [|x|].prop; } };` f := fourslash.NewFourslash(t, nil /*capabilities*/, content) f.VerifyBaselineRename(t, nil /*preferences*/) }