vendor tsgo
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
// Code generated by convertFourslash; DO NOT EDIT.
|
||||
// To modify this test, run "npm run makemanual renameDestructuringAssignmentNestedInArrayLiteral"
|
||||
|
||||
package fourslash_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/microsoft/typescript-go/internal/fourslash"
|
||||
"github.com/microsoft/typescript-go/internal/testutil"
|
||||
)
|
||||
|
||||
func TestRenameDestructuringAssignmentNestedInArrayLiteral(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[], p1: number, [|[|{| "contextRangeIndex": 2 |}property1|]: number|];
|
||||
[|[{ [|{| "contextRangeIndex": 4 |}property1|]: p1 }] = elems;|]
|
||||
[|[{ [|{| "contextRangeIndex": 6 |}property1|] }] = elems;|]`
|
||||
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
||||
defer done()
|
||||
f.VerifyBaselineRename(t, nil /*preferences*/, f.Ranges()[1], f.Ranges()[5], f.Ranges()[3], f.Ranges()[7])
|
||||
}
|
||||
Reference in New Issue
Block a user