TypeScript/tests/cases/fourslash/goToImplementationInterface_08.ts
Andy 9d42ab983d
implementations: Use declaration name for the span (#24537)
* implementations: Use declaration name for the span

* Always get name in nodeEntry
2018-05-31 13:32:02 -07:00

21 lines
447 B
TypeScript

/// <reference path='fourslash.ts'/>
// Should not hang on inheritance loops
//// interface Base {
//// hello (): void;
//// }
////
//// interface A extends Base {}
//// interface B extends C, A {}
//// interface C extends B, A {}
////
//// class X implements B {
//// [|hello|]() {}
//// }
////
//// function someFunction(d : A) {
//// d.he/*function_call*/llo();
//// }
verify.allRangesAppearInImplementationList("function_call");