OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Flags: --expose-debug-as debug --allow-natives-syntax | 5 // Flags: --expose-debug-as debug --allow-natives-syntax |
6 | 6 |
7 // Test debug events when a Promise is rejected, which is caught by a custom | 7 // Test debug events when a Promise is rejected, which is caught by a custom |
8 // promise, which has a number for reject closure. We expect an Exception debug | 8 // promise, which has a number for reject closure. We expect an Exception debug |
9 // events trying to call the invalid reject closure. | 9 // events trying to call the invalid reject closure. |
10 | 10 |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 assertEquals(["resolve", "construct", "end main", "reject caught"], | 59 assertEquals(["resolve", "construct", "end main", "reject caught"], |
60 log); | 60 log); |
61 } else { | 61 } else { |
62 testDone(iteration + 1); | 62 testDone(iteration + 1); |
63 } | 63 } |
64 } catch (e) { | 64 } catch (e) { |
65 %AbortJS(e + "\n" + e.stack); | 65 %AbortJS(e + "\n" + e.stack); |
66 } | 66 } |
67 } | 67 } |
68 | 68 |
69 // Run testDone through the Object.observe processing loop. | 69 Promise.resolve().then(checkResult); |
70 var dummy = {}; | |
71 Object.observe(dummy, checkResult); | |
72 dummy.dummy = dummy; | |
73 } | 70 } |
74 | 71 |
75 testDone(0); | 72 testDone(0); |
76 | 73 |
77 log.push("end main"); | 74 log.push("end main"); |
OLD | NEW |