vendor tsgo
This commit is contained in:
27
tools/tsgo/internal/fourslash/tests/gen/renameThis_test.go
Normal file
27
tools/tsgo/internal/fourslash/tests/gen/renameThis_test.go
Normal file
@@ -0,0 +1,27 @@
|
||||
// Code generated by convertFourslash; DO NOT EDIT.
|
||||
// To modify this test, run "npm run makemanual renameThis"
|
||||
|
||||
package fourslash_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/microsoft/typescript-go/internal/fourslash"
|
||||
"github.com/microsoft/typescript-go/internal/testutil"
|
||||
)
|
||||
|
||||
func TestRenameThis(t *testing.T) {
|
||||
fourslash.SkipIfFailing(t)
|
||||
t.Parallel()
|
||||
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
||||
const content = `function f([|this|]) {
|
||||
return [|this|];
|
||||
}
|
||||
this/**/;
|
||||
const _ = { [|[|{| "contextRangeIndex": 2 |}this|]: 0|] }.[|this|];`
|
||||
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
||||
defer done()
|
||||
f.GoToMarker(t, "")
|
||||
f.VerifyRenameFailed(t, nil /*preferences*/)
|
||||
f.VerifyBaselineRename(t, nil /*preferences*/, f.Ranges()[0], f.Ranges()[1], f.Ranges()[3], f.Ranges()[4])
|
||||
}
|
||||
Reference in New Issue
Block a user