32 lines
965 B
Go
32 lines
965 B
Go
// Code generated by convertFourslash; DO NOT EDIT.
|
|
// To modify this test, run "npm run makemanual renameDestructuringDeclarationInForOf"
|
|
|
|
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/microsoft/typescript-go/internal/fourslash"
|
|
"github.com/microsoft/typescript-go/internal/testutil"
|
|
)
|
|
|
|
func TestRenameDestructuringDeclarationInForOf(t *testing.T) {
|
|
fourslash.SkipIfFailing(t)
|
|
t.Parallel()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `interface I {
|
|
[|[|{| "contextRangeIndex": 0 |}property1|]: number;|]
|
|
property2: string;
|
|
}
|
|
var elems: I[];
|
|
|
|
for ([|let { [|{| "contextRangeIndex": 2 |}property1|] } of elems|]) {
|
|
[|property1|]++;
|
|
}
|
|
for ([|let { [|{| "contextRangeIndex": 5 |}property1|]: p2 } of elems|]) {
|
|
}`
|
|
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
defer done()
|
|
f.VerifyBaselineRename(t, nil /*preferences*/, f.Ranges()[1], f.Ranges()[6], f.Ranges()[3], f.Ranges()[4])
|
|
}
|