v8/test/inspector/debugger/set-script-source-2-expected.txt
Alexey Kozyatinskiy 6b0bf1659e [inspector] move SetScriptSource call to native
To avoid using debugging context and debugger-script.js on inspector side we can move SetScriptSource call to v8::internal::Debug. Theoretically we can move live edit implementation to native completely but since it will be reimplemented it looks redundant.

R=yangguo@chromium.org,jgruber@chromium.org

Bug: chromium:652939
Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_chromium_rel_ng
Change-Id: Id09492c2d2a93efbde429c9cc1bc181d5fdda19b
Reviewed-on: https://chromium-review.googlesource.com/590736
Commit-Queue: Aleksey Kozyatinskiy <kozyatinskiy@chromium.org>
Reviewed-by: Jakob Gruber <jgruber@chromium.org>
Cr-Commit-Position: refs/heads/master@{#46985}
2017-07-28 21:55:05 +00:00

74 lines
958 B
Plaintext

Tests Debugger.setScriptSource
Running test: addLineAfter
var x = 1;
#debugger;
return x + 2;
---
Break location after LiveEdit:
var x = 1;
#debugger;
var x = 3;
stackChanged: true
Protocol.Debugger.stepInto
function foo() {
var x = #1;
debugger;
Running test: addLineBefore
var x = 1;
#debugger;
return x + 2;
---
Break location after LiveEdit:
var x = 1;
var x = #3;
debugger;
stackChanged: true
Protocol.Debugger.stepInto
function foo() {
var x = #1;
var x = 3;
Running test: breakAtFirstLineAddLineAfter
function boo() {
#debugger;
var x = 1;
---
Break location after LiveEdit:
function boo() {
#debugger;
var x = 3;
stackChanged: true
Protocol.Debugger.stepInto
function boo() {
#debugger;
var x = 3;
Running test: breakAtFirstLineAddLineBefore
function boo() {
#debugger;
var x = 1;
---
Break location after LiveEdit:
function boo() {
var x = #3;
debugger;
stackChanged: true
Protocol.Debugger.stepInto
var x = 3;
#debugger;
var x = 1;