kittenipc/kitcom/internal/tsgo/fourslash/tests/gen/renameJsSpecialAssignmentRhs1_test.go
2025-10-15 10:12:44 +03:00

27 lines
601 B
Go

package fourslash_test
import (
"testing"
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash"
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil"
)
func TestRenameJsSpecialAssignmentRhs1(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*/)
}