File: quickInfoDisplayPartsLet.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 (25 lines) | stat: -rw-r--r-- 559 bytes parent folder | download | duplicates (7)
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
/// <reference path='fourslash.ts'/>

////let /*1*/a = 10;
////function foo() {
////    let /*2*/b = /*3*/a;
////    if (b) {
////        let /*4*/b1 = 10;
////    }
////}
////module m {
////    let /*5*/c = 10;
////    export let /*6*/d = 10;
////    if (c) {
////        let /*7*/e = 10;
////    }
////}
////let /*8*/f: () => number;
////let /*9*/g = /*10*/f;
/////*11*/f();
////let /*12*/h: { (a: string): number; (a: number): string; };
////let /*13*/i = /*14*/h;
/////*15*/h(10);
/////*16*/h("hello");

verify.baselineQuickInfo();