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 test1() { | 54 function test1() { |
55 debugger; | 55 debugger; |
56 with ({x:1}) { | 56 with ({x:1}) { |
57 x = 2; | 57 x = 2; |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 } catch(e) { | 179 } catch(e) { |
180 nop(); | 180 nop(); |
181 } | 181 } |
182 | 182 |
183 | 183 |
184 function nop() {} | 184 function nop() {} |
185 | 185 |
186 | 186 |
187 // With block as the last(!) statement in global code. | 187 // With block as the last(!) statement in global code. |
188 with ({}) { debugger; } | 188 with ({}) { debugger; } |
OLD | NEW |