| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 // Access scope details. | 37 // Access scope details. |
| 38 var scope_count = exec_state.frame().scopeCount(); | 38 var scope_count = exec_state.frame().scopeCount(); |
| 39 for (var i = 0; i < scope_count; i++) { | 39 for (var i = 0; i < scope_count; i++) { |
| 40 var scope = exec_state.frame().scope(i); | 40 var scope = exec_state.frame().scope(i); |
| 41 // assertTrue(scope.isScope()); | 41 // assertTrue(scope.isScope()); |
| 42 scope.scopeType(); | 42 scope.scopeType(); |
| 43 scope.scopeObject(); | 43 scope.scopeObject(); |
| 44 } | 44 } |
| 45 | 45 |
| 46 // Do steps until we reach the global scope again. | 46 // Do steps until we reach the global scope again. |
| 47 exec_state.prepareStep(Debug.StepAction.StepIn, 1); | 47 exec_state.prepareStep(Debug.StepAction.StepIn); |
| 48 } | 48 } |
| 49 } | 49 } |
| 50 | 50 |
| 51 Debug.setListener(listener); | 51 Debug.setListener(listener); |
| 52 | 52 |
| 53 | 53 |
| 54 function nop() {} | 54 function nop() {} |
| 55 | 55 |
| 56 | 56 |
| 57 function stress() { | 57 function stress() { |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 } catch (e) { | 223 } catch (e) { |
| 224 with ({x: 'inner'}) { | 224 with ({x: 'inner'}) { |
| 225 return e; | 225 return e; |
| 226 } | 226 } |
| 227 } | 227 } |
| 228 } | 228 } |
| 229 stress4(); | 229 stress4(); |
| 230 | 230 |
| 231 } | 231 } |
| 232 stress(); | 232 stress(); |
| OLD | NEW |