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

Side by Side Diff: test/inspector/debugger/set-script-source-exception.js

Issue 2651153004: Fix uncaught exception bug from liveEditScriptSource (Closed)
Patch Set: ac Created 3 years, 11 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
OLDNEW
(Empty)
1 // Copyright 2017 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 print('Check that setScriptSource completes correctly when an exception is throw n.');
6
7 Protocol.Debugger.enable();
8
9 InspectorTest.runTestSuite([
10 function testIncorrectScriptId(next) {
11 Protocol.Debugger.setScriptSource({ scriptId: '-1', scriptSource: '0' })
12 .then(InspectorTest.logMessage)
13 .then(next);
14 },
15
16 function testSourceWithSyntaxError(next) {
17 Protocol.Debugger.onceScriptParsed()
18 .then(message => Protocol.Debugger.setScriptSource({ scriptId: message.par ams.scriptId, scriptSource: 'a # b' }))
19 .then(InspectorTest.logMessage)
20 .then(next);
21 InspectorTest.addScript('function foo() {}');
22 }
23 ]);
OLDNEW
« no previous file with comments | « src/inspector/v8-debugger.cc ('k') | test/inspector/debugger/set-script-source-exception-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698