TypeScript/tests/cases/fourslash/goToImplementationInterfaceMethod_08.ts

23 lines
430 B
TypeScript
Raw Normal View History

2016-08-22 22:57:40 +02:00
/// <reference path='fourslash.ts'/>
// Should handle calls made on this
//// interface Foo {
//// hello (): void;
//// }
////
//// class SuperBar implements Foo {
//// [|hello|]() {}
2016-08-22 22:57:40 +02:00
//// }
////
//// class Bar extends SuperBar {
//// whatever() { this.he/*function_call*/llo(); }
//// }
////
//// class SubBar extends Bar {
//// [|hello|]() {}
2016-08-22 22:57:40 +02:00
//// }
2016-09-14 02:33:49 +02:00
verify.allRangesAppearInImplementationList("function_call");