36 lines
891 B
Go
36 lines
891 B
Go
// Code generated by convertFourslash; DO NOT EDIT.
|
|
// To modify this test, run "npm run makemanual goToImplementationInterfaceMethod_02"
|
|
|
|
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/microsoft/typescript-go/internal/fourslash"
|
|
"github.com/microsoft/typescript-go/internal/testutil"
|
|
)
|
|
|
|
func TestGoToImplementationInterfaceMethod_02(t *testing.T) {
|
|
fourslash.SkipIfFailing(t)
|
|
t.Parallel()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `interface Foo {
|
|
he/*declaration*/llo(): void
|
|
}
|
|
|
|
abstract class AbstractBar implements Foo {
|
|
abstract hello(): void;
|
|
}
|
|
|
|
class Bar extends AbstractBar {
|
|
[|hello|]() {}
|
|
}
|
|
|
|
function whatever(a: AbstractBar) {
|
|
a.he/*function_call*/llo();
|
|
}`
|
|
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
defer done()
|
|
f.VerifyBaselineGoToImplementation(t, "function_call", "declaration")
|
|
}
|