7a8e24b48f
This reverts commit 4363a69335
.
Reason for revert: Seems to break layout tests: https://ci.chromium.org/buildbot/client.v8.fyi/V8-Blink%20Linux%2064/24146
Original change's description:
> [inspector] fixed location of top level function return
>
> We should pass false as has_braces argument to create FunctionLiteral
> for top level function.
>
> R=dgozman@chromium.org,bmeurer@chromium.org
> TBR=bmeurer@chromium.org
>
> Bug: none
> Change-Id: I397f31b562d32c71f3a12bfc9ceeed16c367aa80
> Reviewed-on: https://chromium-review.googlesource.com/1098018
> Commit-Queue: Aleksey Kozyatinskiy <kozyatinskiy@chromium.org>
> Reviewed-by: Dmitry Gozman <dgozman@chromium.org>
> Reviewed-by: Yang Guo <yangguo@chromium.org>
> Cr-Commit-Position: refs/heads/master@{#53769}
TBR=dgozman@chromium.org,yangguo@chromium.org,kozyatinskiy@chromium.org
# Not skipping CQ checks because original CL landed > 1 day ago.
Bug: none
Change-Id: I4495f6723daed63b7a38b0d3c3637724f6c2d484
Reviewed-on: https://chromium-review.googlesource.com/1104017
Reviewed-by: Clemens Hammacher <clemensh@chromium.org>
Commit-Queue: Clemens Hammacher <clemensh@chromium.org>
Cr-Commit-Position: refs/heads/master@{#53775}
272 lines
8.2 KiB
Plaintext
272 lines
8.2 KiB
Plaintext
Test for Debugger.getPossibleBreakpoints
|
|
|
|
Running test: getPossibleBreakpointsInRange
|
|
Test start.scriptId != end.scriptId.
|
|
{
|
|
error : {
|
|
code : -32000
|
|
message : Locations should contain the same scriptId
|
|
}
|
|
id : <messageId>
|
|
}
|
|
Test not existing scriptId.
|
|
{
|
|
error : {
|
|
code : -32000
|
|
message : Script not found
|
|
}
|
|
id : <messageId>
|
|
}
|
|
Test end < start.
|
|
function foo(){ return Promise.resolve(); }
|
|
function boo(){ return Promise.resolve().then(() => 42); }
|
|
|
|
|
|
Test empty range in first line.
|
|
function foo(){ return Promise.resolve(); }
|
|
function boo(){ return Promise.resolve().then(() => 42); }
|
|
|
|
|
|
Test one character range in first line.
|
|
function foo(){ #return Promise.resolve(); }
|
|
function boo(){ return Promise.resolve().then(() => 42); }
|
|
|
|
|
|
Test empty range in not first line.
|
|
function foo(){ return Promise.resolve(); }
|
|
function boo(){ return Promise.resolve().then(() => 42); }
|
|
|
|
|
|
Test one character range in not first line.
|
|
function foo(){ return Promise.resolve(); }
|
|
function boo(){ #return Promise.resolve().then(() => 42); }
|
|
|
|
|
|
Test end is undefined
|
|
function foo(){ #return Promise.#resolve();# }
|
|
function boo(){ #return Promise.#resolve().#then(() => #42#);# }
|
|
#
|
|
|
|
Test end.lineNumber > scripts.lineCount()
|
|
function foo(){ #return Promise.#resolve();# }
|
|
function boo(){ #return Promise.#resolve().#then(() => #42#);# }
|
|
#
|
|
|
|
Test one string
|
|
function foo(){ #return Promise.#resolve();# }
|
|
function boo(){ return Promise.resolve().then(() => 42); }
|
|
|
|
|
|
Test end.columnNumber > end.line.length(), should be the same as previous.
|
|
function foo(){ #return Promise.#resolve();# }
|
|
function boo(){ return Promise.resolve().then(() => 42); }
|
|
|
|
|
|
|
|
Running test: getPossibleBreakpointsInArrow
|
|
function foo() { #return Promise.#resolve().#then(() => #239#).#then(() => #42#).#then(() => #() => #42#)# #}
|
|
|
|
Running test: arrowFunctionFirstLine
|
|
function foo1() { #Promise.#resolve().#then(() => #42#) #}
|
|
function foo2() { Promise.resolve().then(() => 42) }
|
|
paused in foo1
|
|
function foo1() { ^Promise.resolve().then(() => 42) }
|
|
function foo2() { Promise.resolve().then(() => 42) }
|
|
paused in foo1
|
|
function foo1() { Promise.^resolve().then(() => 42) }
|
|
function foo2() { Promise.resolve().then(() => 42) }
|
|
paused in foo1
|
|
function foo1() { Promise.resolve().^then(() => 42) }
|
|
function foo2() { Promise.resolve().then(() => 42) }
|
|
paused in foo1
|
|
function foo1() { Promise.resolve().then(() => 42) ^}
|
|
function foo2() { Promise.resolve().then(() => 42) }
|
|
paused in Promise.resolve.then
|
|
function foo1() { Promise.resolve().then(() => ^42) }
|
|
function foo2() { Promise.resolve().then(() => 42) }
|
|
paused in Promise.resolve.then
|
|
function foo1() { Promise.resolve().then(() => 42^) }
|
|
function foo2() { Promise.resolve().then(() => 42) }
|
|
|
|
Running test: arrowFunctionOnPause
|
|
#debugger; function foo3() { #Promise.#resolve().#then(() => #42#) #}
|
|
function foo4() { #Promise.#resolve().#then(() => #42#) #};
|
|
#foo3();
|
|
#foo4()#;
|
|
paused in
|
|
debugger; function foo3() { Promise.resolve().then(() => 42) }
|
|
function foo4() { Promise.resolve().then(() => 42) };
|
|
^foo3();
|
|
foo4();
|
|
paused in foo3
|
|
debugger; function foo3() { ^Promise.resolve().then(() => 42) }
|
|
function foo4() { Promise.resolve().then(() => 42) };
|
|
foo3();
|
|
foo4();
|
|
paused in foo3
|
|
debugger; function foo3() { Promise.^resolve().then(() => 42) }
|
|
function foo4() { Promise.resolve().then(() => 42) };
|
|
foo3();
|
|
foo4();
|
|
paused in foo3
|
|
debugger; function foo3() { Promise.resolve().^then(() => 42) }
|
|
function foo4() { Promise.resolve().then(() => 42) };
|
|
foo3();
|
|
foo4();
|
|
paused in foo3
|
|
debugger; function foo3() { Promise.resolve().then(() => 42) ^}
|
|
function foo4() { Promise.resolve().then(() => 42) };
|
|
foo3();
|
|
foo4();
|
|
paused in
|
|
debugger; function foo3() { Promise.resolve().then(() => 42) }
|
|
function foo4() { Promise.resolve().then(() => 42) };
|
|
foo3();
|
|
^foo4();
|
|
paused in foo4
|
|
debugger; function foo3() { Promise.resolve().then(() => 42) }
|
|
function foo4() { ^Promise.resolve().then(() => 42) };
|
|
foo3();
|
|
foo4();
|
|
paused in foo4
|
|
debugger; function foo3() { Promise.resolve().then(() => 42) }
|
|
function foo4() { Promise.^resolve().then(() => 42) };
|
|
foo3();
|
|
foo4();
|
|
paused in foo4
|
|
debugger; function foo3() { Promise.resolve().then(() => 42) }
|
|
function foo4() { Promise.resolve().^then(() => 42) };
|
|
foo3();
|
|
foo4();
|
|
paused in foo4
|
|
debugger; function foo3() { Promise.resolve().then(() => 42) }
|
|
function foo4() { Promise.resolve().then(() => 42) ^};
|
|
foo3();
|
|
foo4();
|
|
paused in
|
|
debugger; function foo3() { Promise.resolve().then(() => 42) }
|
|
function foo4() { Promise.resolve().then(() => 42) };
|
|
foo3();
|
|
foo4()^;
|
|
paused in Promise.resolve.then
|
|
debugger; function foo3() { Promise.resolve().then(() => ^42) }
|
|
function foo4() { Promise.resolve().then(() => 42) };
|
|
foo3();
|
|
foo4();
|
|
paused in Promise.resolve.then
|
|
debugger; function foo3() { Promise.resolve().then(() => 42^) }
|
|
function foo4() { Promise.resolve().then(() => 42) };
|
|
foo3();
|
|
foo4();
|
|
paused in Promise.resolve.then
|
|
debugger; function foo3() { Promise.resolve().then(() => 42) }
|
|
function foo4() { Promise.resolve().then(() => ^42) };
|
|
foo3();
|
|
foo4();
|
|
paused in Promise.resolve.then
|
|
debugger; function foo3() { Promise.resolve().then(() => 42) }
|
|
function foo4() { Promise.resolve().then(() => 42^) };
|
|
foo3();
|
|
foo4();
|
|
|
|
Running test: getPossibleBreakpointsInRangeWithOffset
|
|
Test empty range in first line.
|
|
function foo(){ return Promise.resolve(); }
|
|
function boo(){ return Promise.resolve().then(() => 42); }
|
|
|
|
|
|
Test one character range in first line.
|
|
function foo(){ #return Promise.resolve(); }
|
|
function boo(){ return Promise.resolve().then(() => 42); }
|
|
|
|
|
|
Test empty range in not first line.
|
|
function foo(){ return Promise.resolve(); }
|
|
function boo(){ return Promise.resolve().then(() => 42); }
|
|
|
|
|
|
Test one character range in not first line.
|
|
function foo(){ return Promise.resolve(); }
|
|
function boo(){ #return Promise.resolve().then(() => 42); }
|
|
|
|
|
|
Test end is undefined
|
|
function foo(){ #return Promise.#resolve();# }
|
|
function boo(){ #return Promise.#resolve().#then(() => #42#);# }
|
|
#
|
|
|
|
Test end.lineNumber > scripts.lineCount()
|
|
function foo(){ #return Promise.#resolve();# }
|
|
function boo(){ #return Promise.#resolve().#then(() => #42#);# }
|
|
#
|
|
|
|
Test one string
|
|
function foo(){ #return Promise.#resolve();# }
|
|
function boo(){ return Promise.resolve().then(() => 42); }
|
|
|
|
|
|
Test end.columnNumber > end.line.length(), should be the same as previous.
|
|
function foo(){ #return Promise.#resolve();# }
|
|
function boo(){ return Promise.resolve().then(() => 42); }
|
|
|
|
|
|
|
|
Running test: withOffset
|
|
function foo5() { #Promise.#resolve().#then(() => #42#) #}
|
|
function foo6() { #Promise.#resolve().#then(() => #42#) #}
|
|
paused in foo5
|
|
function foo5() { ^Promise.resolve().then(() => 42) }
|
|
function foo6() { Promise.resolve().then(() => 42) }
|
|
paused in foo5
|
|
function foo5() { Promise.^resolve().then(() => 42) }
|
|
function foo6() { Promise.resolve().then(() => 42) }
|
|
paused in foo5
|
|
function foo5() { Promise.resolve().^then(() => 42) }
|
|
function foo6() { Promise.resolve().then(() => 42) }
|
|
paused in foo5
|
|
function foo5() { Promise.resolve().then(() => 42) ^}
|
|
function foo6() { Promise.resolve().then(() => 42) }
|
|
paused in foo6
|
|
function foo5() { Promise.resolve().then(() => 42) }
|
|
function foo6() { ^Promise.resolve().then(() => 42) }
|
|
paused in foo6
|
|
function foo5() { Promise.resolve().then(() => 42) }
|
|
function foo6() { Promise.^resolve().then(() => 42) }
|
|
paused in foo6
|
|
function foo5() { Promise.resolve().then(() => 42) }
|
|
function foo6() { Promise.resolve().^then(() => 42) }
|
|
paused in foo6
|
|
function foo5() { Promise.resolve().then(() => 42) }
|
|
function foo6() { Promise.resolve().then(() => 42) ^}
|
|
paused in Promise.resolve.then
|
|
function foo5() { Promise.resolve().then(() => ^42) }
|
|
function foo6() { Promise.resolve().then(() => 42) }
|
|
paused in Promise.resolve.then
|
|
function foo5() { Promise.resolve().then(() => 42^) }
|
|
function foo6() { Promise.resolve().then(() => 42) }
|
|
paused in Promise.resolve.then
|
|
function foo5() { Promise.resolve().then(() => 42) }
|
|
function foo6() { Promise.resolve().then(() => ^42) }
|
|
paused in Promise.resolve.then
|
|
function foo5() { Promise.resolve().then(() => 42) }
|
|
function foo6() { Promise.resolve().then(() => 42^) }
|
|
|
|
Running test: arrowFunctionReturn
|
|
#() => #239#
|
|
|
|
function foo() { function boo() { #return 239# } #}#
|
|
|
|
#() => { #239 #}#
|
|
|
|
function foo() { #239 #}#
|
|
|
|
#() => #23#9#
|
|
#() => { #return 239# #}
|
|
|
|
Running test: argumentsAsCalls
|
|
function foo(){#}
|
|
function boo(){#}
|
|
function main(f1,f2){#}
|
|
#main(#foo(), #boo());#
|
|
|