vendor tsgo
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
// Code generated by convertFourslash; DO NOT EDIT.
|
||||
// To modify this test, run "npm run makemanual goToDefinitionFunctionOverloadsInClass"
|
||||
|
||||
package fourslash_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/microsoft/typescript-go/internal/fourslash"
|
||||
"github.com/microsoft/typescript-go/internal/testutil"
|
||||
)
|
||||
|
||||
func TestGoToDefinitionFunctionOverloadsInClass(t *testing.T) {
|
||||
fourslash.SkipIfFailing(t)
|
||||
t.Parallel()
|
||||
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
||||
const content = `class clsInOverload {
|
||||
static fnOverload();
|
||||
static [|/*staticFunctionOverload*/fnOverload|](foo: string);
|
||||
static /*staticFunctionOverloadDefinition*/fnOverload(foo: any) { }
|
||||
public [|/*functionOverload*/fnOverload|](): any;
|
||||
public fnOverload(foo: string);
|
||||
public /*functionOverloadDefinition*/fnOverload(foo: any) { return "foo" }
|
||||
|
||||
constructor() { }
|
||||
}`
|
||||
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
||||
defer done()
|
||||
f.VerifyBaselineGoToDefinition(t, true, "staticFunctionOverload", "functionOverload")
|
||||
}
|
||||
Reference in New Issue
Block a user