Files
kjol/tools/tsgo/internal/fourslash/tests/gen/goToImplementationInterfaceMethod_01_test.go
2026-07-09 16:50:43 -04:00

36 lines
866 B
Go

// Code generated by convertFourslash; DO NOT EDIT.
// To modify this test, run "npm run makemanual goToImplementationInterfaceMethod_01"
package fourslash_test
import (
"testing"
"github.com/microsoft/typescript-go/internal/fourslash"
"github.com/microsoft/typescript-go/internal/testutil"
)
func TestGoToImplementationInterfaceMethod_01(t *testing.T) {
fourslash.SkipIfFailing(t)
t.Parallel()
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
const content = `interface Foo {
hel/*declaration*/lo(): void;
okay?: number;
}
class Bar implements Foo {
[|hello|]() {}
public sure() {}
}
function whatever(a: Foo) {
a.he/*function_call*/llo();
}
whatever(new Bar());`
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
defer done()
f.VerifyBaselineGoToImplementation(t, "function_call", "declaration")
}