OLD | NEW |
1 // Copyright 2008 the V8 project authors. All rights reserved. | 1 // Copyright 2008 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 assertEquals("", response.lookup(backtrace.frames[1].func.ref).name); | 83 assertEquals("", response.lookup(backtrace.frames[1].func.ref).name); |
84 | 84 |
85 listenerCalled = true; | 85 listenerCalled = true; |
86 } | 86 } |
87 } catch (e) { | 87 } catch (e) { |
88 exception = e | 88 exception = e |
89 }; | 89 }; |
90 }; | 90 }; |
91 | 91 |
92 // Add the debug event listener. | 92 // Add the debug event listener. |
93 Debug.addListener(listener); | 93 Debug.setListener(listener); |
94 | 94 |
95 // Call method on undefined. | 95 // Call method on undefined. |
96 function g() { | 96 function g() { |
97 (void 0).f(); | 97 (void 0).f(); |
98 }; | 98 }; |
99 | 99 |
100 // Break on the exception to do a backtrace with undefined as receiver. | 100 // Break on the exception to do a backtrace with undefined as receiver. |
101 Debug.setBreakOnException(true); | 101 Debug.setBreakOnException(true); |
102 try { | 102 try { |
103 g(); | 103 g(); |
104 } catch(e) { | 104 } catch(e) { |
105 // Ignore the exception "Cannot call method 'x' of undefined" | 105 // Ignore the exception "Cannot call method 'x' of undefined" |
106 } | 106 } |
107 | 107 |
108 // Make sure that the debug event listener vas invoked. | 108 // Make sure that the debug event listener vas invoked. |
109 assertTrue(listenerCalled, "listener not called"); | 109 assertTrue(listenerCalled, "listener not called"); |
110 assertFalse(exception, "exception in listener", exception) | 110 assertFalse(exception, "exception in listener", exception) |
OLD | NEW |