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

Side by Side Diff: test/mjsunit/debug-evaluate-with-context.js

Issue 781623004: [V8] Report v8::AfterCompile and v8::CompileError to listener on pause (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fixed tests Created 6 years 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
« no previous file with comments | « test/mjsunit/debug-compile-event.js ('k') | no next file » | 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 14 matching lines...) Expand all
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 27
28 // Flags: --expose-debug-as debug 28 // Flags: --expose-debug-as debug
29 // Get the Debug object exposed from the debug context global object. 29 // Get the Debug object exposed from the debug context global object.
30 Debug = debug.Debug 30 Debug = debug.Debug
31 31
32 var evaluate_callback; 32 var evaluate_callback;
33 33
34 function listener(event, exec_state, event_data, data) { 34 function listener(event, exec_state, event_data, data) {
35 if (event !== Debug.DebugEvent.Break) return;
35 try { 36 try {
36 var context = { what_is_capybara: "a fish" }; 37 var context = { what_is_capybara: "a fish" };
37 var context2 = { what_is_capybara: "a fish", what_is_parrot: "a beard" }; 38 var context2 = { what_is_capybara: "a fish", what_is_parrot: "a beard" };
38 39
39 // Try in frame's scope. 40 // Try in frame's scope.
40 var local_expression = 41 var local_expression =
41 "(what_is_capybara ? what_is_capybara : 'a beast') + '/' + what_is_parro t"; 42 "(what_is_capybara ? what_is_capybara : 'a beast') + '/' + what_is_parro t";
42 var result = evaluate_callback.in_top_frame(exec_state, local_expression, co ntext); 43 var result = evaluate_callback.in_top_frame(exec_state, local_expression, co ntext);
43 assertEquals('a fish/a bird', result); 44 assertEquals('a fish/a bird', result);
44 45
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 evaluate_callback = { 136 evaluate_callback = {
136 in_top_frame: function(exec_state, expression, additional_context) { 137 in_top_frame: function(exec_state, expression, additional_context) {
137 return evaluateViaProtocol(exec_state, expression, additional_context, funct ion(args) { args.frame = 0; }); 138 return evaluateViaProtocol(exec_state, expression, additional_context, funct ion(args) { args.frame = 0; });
138 }, 139 },
139 globally: function(exec_state, expression, additional_context) { 140 globally: function(exec_state, expression, additional_context) {
140 return evaluateViaProtocol(exec_state, expression, additional_context, funct ion(args) { args.global = true; }); 141 return evaluateViaProtocol(exec_state, expression, additional_context, funct ion(args) { args.global = true; });
141 }, 142 },
142 }; 143 };
143 144
144 runF(); 145 runF();
OLDNEW
« no previous file with comments | « test/mjsunit/debug-compile-event.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698