TypeScript/tests/cases/fourslash/goToImplementationClassMethod_01.ts

18 lines
487 B
TypeScript
Raw Normal View History

2016-08-22 22:57:40 +02:00
/// <reference path='fourslash.ts'/>
// Should handle calls made on member declared in an abstract class
//// abstract class AbstractBar {
//// abstract he/*declaration*/llo(): void;
//// }
////
//// class Bar extends AbstractBar{
//// [|hello|]() {}
2016-08-22 22:57:40 +02:00
//// }
////
//// function whatever(x: AbstractBar) {
//// x.he/*reference*/llo();
//// }
2016-09-14 02:33:49 +02:00
verify.allRangesAppearInImplementationList("reference");
verify.allRangesAppearInImplementationList("declaration");