File: quickInfoAlias.ts

package info (click to toggle)
node-typescript 4.1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 396,552 kB
  • sloc: javascript: 1,444,377; makefile: 7; sh: 3
file content (51 lines) | stat: -rw-r--r-- 1,255 bytes parent folder | download | duplicates (2)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/// <reference path='fourslash.ts'/>

// @Filename: /a.ts
/////**
//// * Doc
//// * @tag Tag text
//// */
////export const x = 0;

// @Filename: /b.ts
////import { x } from "./a";
////x/*b*/;

// @Filename: /c.ts
/////**
//// * Doc 2
//// * @tag Tag text 2
//// */
////import {
////    /**
////     * Doc 3
////     * @tag Tag text 3
////     */
////    x
////} from "./a";
////x/*c*/;

goTo.eachMarker((_, index) => {
    verify.verifyQuickInfoDisplayParts(
        "alias",
        "",
        { start: index === 0 ? 25 : 117, length: 1 },
        [
            { text:"(",kind:"punctuation" },
            { text:"alias",kind:"text" },
            { text:")",kind:"punctuation" },
            { text:" ",kind:"space" },
            { text:"const",kind:"keyword" },
            { text:" ",kind:"space" },
            { text:"x",kind:"aliasName" },
            { text:":",kind:"punctuation" },
            { text:" ",kind:"space" },
            { text:"0",kind:"stringLiteral" },
            { text:"\n",kind:"lineBreak" },
            { text:"import",kind:"keyword" },
            { text:" ",kind:"space" },
            { text:"x",kind:"aliasName" },
        ],
        [{ text: "Doc", kind: "text" }],
        [{ name: "tag", text: "Tag text" }]);
});