TypeScript/tests/cases/fourslash/findAllRefsForModule.ts

22 lines
606 B
TypeScript
Raw Normal View History

/// <reference path="fourslash.ts" />
// @allowJs: true
// @Filename: /a.ts
////export const x = 0;
// @Filename: /b.ts
2019-06-13 21:25:02 +02:00
////[|import { x } from "[|{| "contextRangeIndex": 0 |}./a|]";|]
// @Filename: /c/sub.js
2019-06-13 21:25:02 +02:00
////[|const a = require("[|{| "contextRangeIndex": 2 |}../a|]");|]
// @Filename: /d.ts
//// /// <reference path="[|./a.ts|]" />
2019-06-06 21:51:26 +02:00
const [r0Def, r0, r1Def, r1, r2] = test.ranges();
const ranges = [r0, r1, r2];
2018-01-22 08:25:40 +01:00
verify.referenceGroups(ranges, [{ definition: 'module "/a"', ranges: [r0, r1, r2] }]);
// Testing that it works with documentHighlights too
2019-06-06 21:51:26 +02:00
verify.rangesAreDocumentHighlights(ranges);