We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7d691d commit d6ccee6Copy full SHA for d6ccee6
tests/cases/fourslash/getOutliningForObjectsInArray.ts
@@ -22,20 +22,34 @@
22
////
23
////// same behavior for nested arrays
24
//// const w =[| [
25
-//// [|[ a: 0 ]|],
26
-//// [|[ b: 1 ]|],
27
-//// [|[ c: 2 ]|]
+//// [|[ 0 ]|],
+//// [|[ 1 ]|],
+//// [|[ 2 ]|]
28
//// ]|];
29
30
//// const z =[| [
31
//// [|[
32
-//// a: 0
+//// 0
33
//// ]|],
34
35
-//// b: 1
+//// 1
36
37
38
-//// c: 2
+//// 2
39
+//// ]|]
40
+//// ]|];
41
+////
42
+////// multiple levels of nesting work as expected
43
+//// const z =[| [
44
+//// [|[
45
+//// [|{ hello: 0 }|]
46
+//// ]|],
47
48
+//// [|{ hello: 3 }|]
49
50
51
+//// [|{ hello: 5 }|],
52
+//// [|{ hello: 7 }|]
53
//// ]|]
54
55
0 commit comments