OLD | NEW |
---|---|
(Empty) | |
1 Checks Debugger.getPossibleBreakpoints with ignoreNestedFunctions | |
2 | |
3 Running test: testWholeFunction | |
4 | |
5 function test() { | |
6 #Array.#from([1,2]).#map(() => #1#).#filter(() => #true#); | |
7 function nested1() { | |
8 #Array.#from([1,2]).#map(() => #1#).#filter(() => #true#); | |
9 #} | |
10 function nested2() { | |
11 #Array.#from([1,2]).#map(() => #1#).#filter(() => #true#); | |
12 #} | |
13 #nested1(); | |
14 #nested2(); | |
15 #} | |
16 //# sourceURL=test.js | |
17 | |
18 Running test: testWholeFunctionWithoutNested | |
19 | |
20 function test() { | |
21 #Array.#from([1,2]).#map(() => 1).#filter(() => true); | |
22 function nested1() { | |
23 Array.from([1,2]).map(() => 1).filter(() => true); | |
24 } | |
25 function nested2() { | |
26 Array.from([1,2]).map(() => 1).filter(() => true); | |
27 } | |
28 #nested1(); | |
29 #nested2(); | |
30 #} | |
31 //# sourceURL=test.js | |
32 | |
33 Running test: testPartOfFunctionWithoutNested | |
34 | |
35 function test() { | |
36 #Array.#from([1,2]).map(() => 1).filter(() => true); | |
37 function nested1() { | |
38 Array.from([1,2]).map(() => 1).filter(() => true); | |
39 } | |
40 function nested2() { | |
41 Array.from([1,2]).map(() => 1).filter(() => true); | |
42 } | |
43 nested1(); | |
44 nested2(); | |
45 } | |
46 //# sourceURL=test.js | |
47 | |
48 Running test: testNestedFunction | |
49 | |
50 function test() { | |
51 Array.from([1,2]).map(() => 1).filter(() => true); | |
52 function nested1() { | |
53 #Array.#from([1,2]).#map(() => 1).#filter(() => true); | |
54 #} | |
55 function nested2() { | |
56 Array.from([1,2]).map(() => 1).filter(() => true); | |
57 } | |
58 nested1(); | |
59 nested2(); | |
60 } | |
61 //# sourceURL=test.js | |
62 nested1 (test.js:4:4) | |
dgozman
2017/02/22 23:20:39
Stepping...
kozy
2017/02/22 23:43:49
Done.
| |
63 | |
64 function test() { | |
65 Array.from([1,2]).map(() => 1).filter(() => true); | |
66 function nested1() { | |
67 #Array.from([1,2]).map(() => 1).filter(() => true); | |
68 } | |
69 function nested2() { | |
70 Array.from([1,2]).map(() => 1).filter(() => true); | |
71 } | |
72 nested1(); | |
73 nested2(); | |
74 } | |
75 //# sourceURL=test.js | |
76 | |
77 nested1 (test.js:4:10) | |
78 | |
79 function test() { | |
80 Array.from([1,2]).map(() => 1).filter(() => true); | |
81 function nested1() { | |
82 Array.#from([1,2]).map(() => 1).filter(() => true); | |
83 } | |
84 function nested2() { | |
85 Array.from([1,2]).map(() => 1).filter(() => true); | |
86 } | |
87 nested1(); | |
88 nested2(); | |
89 } | |
90 //# sourceURL=test.js | |
91 | |
92 nested1 (test.js:4:22) | |
93 | |
94 function test() { | |
95 Array.from([1,2]).map(() => 1).filter(() => true); | |
96 function nested1() { | |
97 Array.from([1,2]).#map(() => 1).filter(() => true); | |
98 } | |
99 function nested2() { | |
100 Array.from([1,2]).map(() => 1).filter(() => true); | |
101 } | |
102 nested1(); | |
103 nested2(); | |
104 } | |
105 //# sourceURL=test.js | |
106 | |
107 nested1 (test.js:4:35) | |
108 | |
109 function test() { | |
110 Array.from([1,2]).map(() => 1).filter(() => true); | |
111 function nested1() { | |
112 Array.from([1,2]).map(() => 1).#filter(() => true); | |
113 } | |
114 function nested2() { | |
115 Array.from([1,2]).map(() => 1).filter(() => true); | |
116 } | |
117 nested1(); | |
118 nested2(); | |
119 } | |
120 //# sourceURL=test.js | |
121 | |
122 nested1 (test.js:5:2) | |
123 | |
124 function test() { | |
125 Array.from([1,2]).map(() => 1).filter(() => true); | |
126 function nested1() { | |
127 Array.from([1,2]).map(() => 1).filter(() => true); | |
128 #} | |
129 function nested2() { | |
130 Array.from([1,2]).map(() => 1).filter(() => true); | |
131 } | |
132 nested1(); | |
133 nested2(); | |
134 } | |
135 //# sourceURL=test.js | |
136 | |
OLD | NEW |