Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(340)

Side by Side Diff: test/mjsunit/regress/regress-1081309.js

Issue 19753: Changed the debugger API to allow only one debug event listener to be registe... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « test/mjsunit/debug-stepin-constructor.js ('k') | test/mjsunit/regress/regress-1170187.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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)
OLDNEW
« no previous file with comments | « test/mjsunit/debug-stepin-constructor.js ('k') | test/mjsunit/regress/regress-1170187.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698