TypeScript/tests/cases/fourslash/documentHighlightAtInheritedProperties5.ts

18 lines
359 B
TypeScript
Raw Normal View History

2016-01-08 12:34:43 +01:00
/// <reference path='fourslash.ts'/>
// @Filename: file1.ts
//// interface C extends D {
//// [|prop0|]: string;
//// [|prop1|]: number;
2016-01-08 12:34:43 +01:00
//// }
////
2016-01-08 12:34:43 +01:00
//// interface D extends C {
//// [|prop0|]: string;
//// [|prop1|]: number;
2016-01-08 12:34:43 +01:00
//// }
////
2016-01-08 12:34:43 +01:00
//// var d: D;
//// d.[|prop1|];
2016-01-08 12:34:43 +01:00
verify.rangesWithSameTextAreDocumentHighlights();