27 lines
601 B
Go
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*/)
|
|
}
|