File: breakpointValidationDestructuringParameterArrayBindingPatternDefaultValues.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 (28 lines) | stat: -rw-r--r-- 962 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
26
27
28
/// <reference path='fourslash.ts' />
////declare var console: {
////    log(msg: any): void;
////}
////type Robot = [number, string, string];
////var robotA: Robot = [1, "mower", "mowing"];
////function foo1([, nameA = "noName"]: Robot = [-1, "name", "skill"]) {
////    console.log(nameA);
////}
////function foo2([numberB = -1]: Robot = [-1, "name", "skill"]) {
////    console.log(numberB);
////}
////function foo3([numberA2 = -1, nameA2 = "name", skillA2 = "skill"]: Robot = [-1, "name", "skill"]) {
////    console.log(nameA2);
////}
////function foo4([numberA3 = -1, ...robotAInfo]: Robot = [-1, "name", "skill"]) {
////    console.log(robotAInfo);
////}
////foo1(robotA);
////foo1([2, "trimmer", "trimming"]);
////foo2(robotA);
////foo2([2, "trimmer", "trimming"]);
////foo3(robotA);
////foo3([2, "trimmer", "trimming"]);
////foo4(robotA);
////foo4([2, "trimmer", "trimming"]);

verify.baselineCurrentFileBreakpointLocations();