TypeScript/tests/cases/fourslash/goToImplementationInterfaceMethod_01.ts
2016-09-13 17:33:49 -07:00

22 lines
508 B
TypeScript

/// <reference path='fourslash.ts'/>
// Should return implementations in a simple class
//// 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());
verify.allRangesAppearInImplementationList("function_call");
verify.allRangesAppearInImplementationList("declaration");