OLD | NEW |
(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 ]); |
OLD | NEW |