| OLD | NEW |
| 1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 InspectorTest.log("Checks that inspector reports script compiled in Runtime.eval
uate, " + | 5 let {session, contextGroup, Protocol} = InspectorTest.start("Checks that inspect
or reports script compiled in Runtime.evaluate, " + |
| 6 "Runtime.callFunctionOn and Runtime.compileScript"); | 6 "Runtime.callFunctionOn and Runtime.compileScript"); |
| 7 | 7 |
| 8 InspectorTest.addScript(` | 8 contextGroup.addScript(` |
| 9 function fooTop() { | 9 function fooTop() { |
| 10 eval(\` | 10 eval(\` |
| 11 function foo() { | 11 function foo() { |
| 12 eval("({})") | 12 eval("({})") |
| 13 } | 13 } |
| 14 foo() //# sourceURL=second-frame.js\`); | 14 foo() //# sourceURL=second-frame.js\`); |
| 15 } | 15 } |
| 16 //# sourceURL=top-frame.js`, 8, 26); | 16 //# sourceURL=top-frame.js`, 8, 26); |
| 17 | 17 |
| 18 InspectorTest.addScript(` | 18 contextGroup.addScript(` |
| 19 function fooTopFail() { | 19 function fooTopFail() { |
| 20 eval(\` | 20 eval(\` |
| 21 function fooFail() { | 21 function fooFail() { |
| 22 eval("({}") | 22 eval("({}") |
| 23 } | 23 } |
| 24 fooFail() //# sourceURL=second-frame-fail.js\`); | 24 fooFail() //# sourceURL=second-frame-fail.js\`); |
| 25 } | 25 } |
| 26 //# sourceURL=top-frame-fail.js`, 18, 26); | 26 //# sourceURL=top-frame-fail.js`, 18, 26); |
| 27 | 27 |
| 28 Promise.prototype.thenLog = function log(message) { | 28 Promise.prototype.thenLog = function log(message) { |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 .then(() => Protocol.Runtime.evaluate({ | 70 .then(() => Protocol.Runtime.evaluate({ |
| 71 expression: "fooTop()"})) | 71 expression: "fooTop()"})) |
| 72 .then(msg => objectId = msg.result.result.objectId) | 72 .then(msg => objectId = msg.result.result.objectId) |
| 73 | 73 |
| 74 .thenLog('Runtime.evaluate compile script error with stack trace') | 74 .thenLog('Runtime.evaluate compile script error with stack trace') |
| 75 .then(() => Protocol.Runtime.evaluate({ | 75 .then(() => Protocol.Runtime.evaluate({ |
| 76 expression: "fooTopFail()"})) | 76 expression: "fooTopFail()"})) |
| 77 .then(msg => objectId = msg.result.result.objectId) | 77 .then(msg => objectId = msg.result.result.objectId) |
| 78 | 78 |
| 79 .then(InspectorTest.completeTest); | 79 .then(InspectorTest.completeTest); |
| OLD | NEW |