| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 var _P0 = 75; var _P1 = 76; var _P2 = 77; var _P3 = 78; var _P4 = 79; | 49 var _P0 = 75; var _P1 = 76; var _P2 = 77; var _P3 = 78; var _P4 = 79; |
| 50 var _Q0 = 80; var _Q1 = 81; var _Q2 = 82; var _Q3 = 83; var _Q4 = 84; | 50 var _Q0 = 80; var _Q1 = 81; var _Q2 = 82; var _Q3 = 83; var _Q4 = 84; |
| 51 var _R0 = 85; var _R1 = 86; var _R2 = 87; var _R3 = 88; var _R4 = 89; | 51 var _R0 = 85; var _R1 = 86; var _R2 = 87; var _R3 = 88; var _R4 = 89; |
| 52 var _S0 = 90; var _S1 = 91; var _S2 = 92; var _S3 = 93; var _S4 = 94; | 52 var _S0 = 90; var _S1 = 91; var _S2 = 92; var _S3 = 93; var _S4 = 94; |
| 53 var _T0 = 95; var _T1 = 96; var _T2 = 97; var _T3 = 98; var _T4 = 99; | 53 var _T0 = 95; var _T1 = 96; var _T2 = 97; var _T3 = 98; var _T4 = 99; |
| 54 | 54 |
| 55 f(); | 55 f(); |
| 56 }; | 56 }; |
| 57 | 57 |
| 58 Debug = debug.Debug; | 58 Debug = debug.Debug; |
| 59 var bp = Debug.setBreakPoint(f, 0); | |
| 60 | 59 |
| 61 function listener(event, exec_state, event_data, data) { | 60 function listener(event, exec_state, event_data, data) { |
| 62 result = exec_state.frame().evaluate("i").value(); | 61 result = exec_state.frame().evaluate("i").value(); |
| 63 }; | 62 }; |
| 64 | 63 |
| 65 Debug.setListener(listener); | 64 Debug.setListener(listener); |
| 65 var bp = Debug.setBreakPoint(f, 0); |
| 66 |
| 66 assertThrows(function() { f(); }, RangeError); | 67 assertThrows(function() { f(); }, RangeError); |
| OLD | NEW |