29 lines
798 B
Go
29 lines
798 B
Go
// Code generated by convertFourslash; DO NOT EDIT.
|
|
// To modify this test, run "npm run makemanual goToDefinitionVariableAssignment"
|
|
|
|
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/microsoft/typescript-go/internal/fourslash"
|
|
"github.com/microsoft/typescript-go/internal/testutil"
|
|
)
|
|
|
|
func TestGoToDefinitionVariableAssignment(t *testing.T) {
|
|
fourslash.SkipIfFailing(t)
|
|
t.Parallel()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `// @allowJs: true
|
|
// @checkJs: true
|
|
// @filename: foo.js
|
|
const Bar;
|
|
const Foo = /*def*/Bar = function () {}
|
|
Foo.prototype.bar = function() {}
|
|
new [|Foo/*ref*/|]();`
|
|
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
defer done()
|
|
f.GoToFile(t, "foo.js")
|
|
f.VerifyBaselineGoToDefinition(t, true, "ref")
|
|
}
|