| OLD | NEW |
| 1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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 --harmony-proxies | 5 // Flags: --expose-debug-as debug --harmony-proxies |
| 6 | 6 |
| 7 Debug = debug.Debug | 7 Debug = debug.Debug |
| 8 | 8 |
| 9 var exception = null; | 9 var exception = null; |
| 10 var log = []; | 10 var log = []; |
| 11 | 11 |
| 12 function listener(event, exec_state, event_data, data) { | 12 function listener(event, exec_state, event_data, data) { |
| 13 if (event != Debug.DebugEvent.Break) return; | 13 if (event != Debug.DebugEvent.Break) return; |
| 14 try { | 14 try { |
| 15 print(event_data.sourceLineText()); | 15 print(event_data.sourceLineText()); |
| 16 var entry = ""; | 16 var entry = ""; |
| 17 for (var i = 0; i < exec_state.frameCount(); i++) { | 17 for (var i = 0; i < exec_state.frameCount(); i++) { |
| 18 entry += exec_state.frame(i).sourceLineText().substr(-1); | 18 entry += exec_state.frame(i).sourceLineText().substr(-1); |
| 19 entry += exec_state.frame(i).sourceColumn(); | 19 entry += exec_state.frame(i).sourceColumn(); |
| 20 } | 20 } |
| 21 log.push(entry); | 21 log.push(entry); |
| 22 exec_state.prepareStep(Debug.StepAction.StepIn, 1); | 22 exec_state.prepareStep(Debug.StepAction.StepIn); |
| 23 } catch (e) { | 23 } catch (e) { |
| 24 exception = e; | 24 exception = e; |
| 25 } | 25 } |
| 26 }; | 26 }; |
| 27 | 27 |
| 28 var target = {}; | 28 var target = {}; |
| 29 var handler = { | 29 var handler = { |
| 30 has: function(target, name) { | 30 has: function(target, name) { |
| 31 return true; // h | 31 return true; // h |
| 32 }, // i | 32 }, // i |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 "d0", "l4d11", "m2d11", // [[Set]] | 69 "d0", "l4d11", "m2d11", // [[Set]] |
| 70 "e14", "r4e14", "q4r11e14", "s2e14", // for-in [[Enumerate]] | 70 "e14", "r4e14", "q4r11e14", "s2e14", // for-in [[Enumerate]] |
| 71 "o6e14", "q4e14", "p6e14", "q4e14", "q4e14", // exhaust iterator | 71 "o6e14", "q4e14", "p6e14", "q4e14", "q4e14", // exhaust iterator |
| 72 "e9", // for-in-body | 72 "e9", // for-in-body |
| 73 "h4e9","i2e9", // [[Has]] property | 73 "h4e9","i2e9", // [[Has]] property |
| 74 "f2","foo", "e9", // for-in-body | 74 "f2","foo", "e9", // for-in-body |
| 75 "h4e9","i2e9", // [[Has]]property | 75 "h4e9","i2e9", // [[Has]]property |
| 76 "f2","bar", "e9", // for-in-body | 76 "f2","bar", "e9", // for-in-body |
| 77 "g0" | 77 "g0" |
| 78 ], log); | 78 ], log); |
| OLD | NEW |