File: findAllRefsPrimitive.ts

package info (click to toggle)
node-typescript 4.8.4%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 523,068 kB
  • sloc: javascript: 1,735,777; makefile: 7; sh: 1
file content (31 lines) | stat: -rw-r--r-- 867 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// @noLib: true

/// <reference path='fourslash.ts'/>

// @Filename: a.ts
////const x: /*1*/[|any|] = 0;
////const any = 2;
////const y: /*2*/[|any|] = any;

////function f(b: /*3*/[|boolean|]): /*4*/[|boolean|];

////type T = /*5*/[|never|]; type U = /*6*/[|never|];

////function n(x: /*7*/[|number|]): /*8*/[|number|];

////function o(x: /*9*/[|object|]): /*10*/[|object|];

////function s(x: /*11*/[|string|]): /*12*/[|string|];

////function sy(s: /*13*/[|symbol|]): /*14*/[|symbol|];

////function v(v: /*15*/[|void|]): /*16*/[|void|];

// @Filename: b.ts
//// const z: /*17*/[|any|] = 0;

verify.baselineFindAllReferences('1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14', '15', '16', '17');
verify.rangesWithSameTextAreDocumentHighlights();

goTo.rangeStart(test.ranges()[0]);
verify.renameInfoFailed();