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

Side by Side Diff: test/cctest/test-debug.cc

Issue 10875072: Enable/disable LiveEdit using the (C++) debug API. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 3 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
« src/debug.h ('K') | « test/cctest/cctest.status ('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 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 7402 matching lines...) Expand 10 before | Expand all | Expand 10 after
7413 CompileRun("debugger;"); 7413 CompileRun("debugger;");
7414 CHECK_EQ(1, CountNativeContexts()); 7414 CHECK_EQ(1, CountNativeContexts());
7415 7415
7416 v8::Debug::SetDebugEventListener(NopListener); 7416 v8::Debug::SetDebugEventListener(NopListener);
7417 CompileRun("debugger;"); 7417 CompileRun("debugger;");
7418 CHECK_EQ(2, CountNativeContexts()); 7418 CHECK_EQ(2, CountNativeContexts());
7419 7419
7420 v8::Debug::SetDebugEventListener(NULL); 7420 v8::Debug::SetDebugEventListener(NULL);
7421 } 7421 }
7422 7422
7423
7424 TEST(LiveEditEnabled) {
7425 v8::internal::FLAG_allow_natives_syntax = true;
7426 v8::HandleScope scope;
7427 LocalContext context;
7428 v8::Debug::SetLiveEditEnabled(true);
7429 CompileRun("%LiveEditCompareStrings('', '')");
7430 }
7431
7432
7433 TEST(LiveEditDisabled) {
7434 v8::internal::FLAG_allow_natives_syntax = true;
7435 v8::HandleScope scope;
7436 LocalContext context;
7437 v8::Debug::SetLiveEditEnabled(false);
7438 CompileRun("%LiveEditCompareStrings('', '')");
7439 }
7440
7441
7423 #endif // ENABLE_DEBUGGER_SUPPORT 7442 #endif // ENABLE_DEBUGGER_SUPPORT
OLDNEW
« src/debug.h ('K') | « test/cctest/cctest.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698