v8/test/inspector/debugger/get-possible-breakpoints-restrict-to-function-expected.txt

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

178 lines
3.7 KiB
Plaintext
Raw Normal View History

Checks Debugger.getPossibleBreakpoints with ignoreNestedFunctions
Running test: testWholeFunction
function test() {
|_|Array.|C|from([1,2]).|C|map(() => |_|1|R|).|C|filter(() => |_|true|R|);
function nested1() {
|_|Array.|C|from([1,2]).|C|map(() => |_|1|R|).|C|filter(() => |_|true|R|);
|R|}
function nested2() {
|_|Array.|C|from([1,2]).|C|map(() => |_|1|R|).|C|filter(() => |_|true|R|);
|R|}
|C|nested1();
|C|nested2();
|R|}
Running test: testWholeFunctionWithoutNested
function test() {
|_|Array.|C|from([1,2]).|C|map(() => |_|1|R|).|C|filter(() => |_|true|R|);
function nested1() {
|_|Array.|C|from([1,2]).|C|map(() => |_|1|R|).|C|filter(() => |_|true|R|);
|R|}
function nested2() {
|_|Array.|C|from([1,2]).|C|map(() => |_|1|R|).|C|filter(() => |_|true|R|);
|R|}
|C|nested1();
|C|nested2();
|R|}
Running test: testPartOfFunctionWithoutNested
function test() {
|_|Array.|C|from([1,2]).map(() => 1).filter(() => true);
function nested1() {
Array.from([1,2]).map(() => 1).filter(() => true);
}
function nested2() {
Array.from([1,2]).map(() => 1).filter(() => true);
}
nested1();
nested2();
}
Running test: testNestedFunction
function test() {
Array.from([1,2]).map(() => 1).filter(() => true);
function nested1() {
|_|Array.|C|from([1,2]).|C|map(() => |_|1|R|).|C|filter(() => |_|true|R|);
|R|}
function nested2() {
|_|Array.|C|from([1,2]).|C|map(() => |_|1|R|).|C|filter(() => |_|true|R|);
|R|}
|C|nested1();
|C|nested2();
|R|}
Revert "[inspector] moved var initialization break location before init expression" This reverts commit 7a9cc70492e77cf8754c82cb4b9a481be50c0104. Reason for revert: Changes layout tests: https://build.chromium.org/p/client.v8.fyi/builders/V8-Blink%20Linux%2064/builds/15882 This is about: inspector/sources/debugger/source-frame-inline-breakpoint-decorations.html Original change's description: > [inspector] moved var initialization break location before init expression > > This CL improves break locations for expressions like 'var a = <expr>'. Without CL we use <expr> position as break location for initialization statement, with this CL we use position of first character after '=' as position. > Benefits (see test for details): > - only one break in expressions which includes mix of property lookup and calls, e.g. var p = Promise.resolve().then(x => x * 2), > - removed redundant break location for expressions like: let { x, y } = { x: 1, y: 2}. > > Bug: v8:5909 > Change-Id: I039d911903a2826c9859710a63ab0462c992e11b > Reviewed-on: https://chromium-review.googlesource.com/513926 > Commit-Queue: Aleksey Kozyatinskiy <kozyatinskiy@chromium.org> > Reviewed-by: Marja Hölttä <marja@chromium.org> > Reviewed-by: Dmitry Gozman <dgozman@chromium.org> > Cr-Commit-Position: refs/heads/master@{#45530} TBR=dgozman@chromium.org,marja@chromium.org,kozyatinskiy@chromium.org # Not skipping CQ checks because original CL landed > 1 day ago. Bug: v8:5909 Change-Id: Ibf84401e8050d3c84db219d983de2c6bba0f697f Reviewed-on: https://chromium-review.googlesource.com/518102 Reviewed-by: Michael Achenbach <machenbach@chromium.org> Commit-Queue: Michael Achenbach <machenbach@chromium.org> Cr-Commit-Position: refs/heads/master@{#45547}
2017-05-29 06:28:04 +00:00
Run test() to check breakpoints..
Revert "[inspector] moved var initialization break location before init expression" This reverts commit 7a9cc70492e77cf8754c82cb4b9a481be50c0104. Reason for revert: Changes layout tests: https://build.chromium.org/p/client.v8.fyi/builders/V8-Blink%20Linux%2064/builds/15882 This is about: inspector/sources/debugger/source-frame-inline-breakpoint-decorations.html Original change's description: > [inspector] moved var initialization break location before init expression > > This CL improves break locations for expressions like 'var a = <expr>'. Without CL we use <expr> position as break location for initialization statement, with this CL we use position of first character after '=' as position. > Benefits (see test for details): > - only one break in expressions which includes mix of property lookup and calls, e.g. var p = Promise.resolve().then(x => x * 2), > - removed redundant break location for expressions like: let { x, y } = { x: 1, y: 2}. > > Bug: v8:5909 > Change-Id: I039d911903a2826c9859710a63ab0462c992e11b > Reviewed-on: https://chromium-review.googlesource.com/513926 > Commit-Queue: Aleksey Kozyatinskiy <kozyatinskiy@chromium.org> > Reviewed-by: Marja Hölttä <marja@chromium.org> > Reviewed-by: Dmitry Gozman <dgozman@chromium.org> > Cr-Commit-Position: refs/heads/master@{#45530} TBR=dgozman@chromium.org,marja@chromium.org,kozyatinskiy@chromium.org # Not skipping CQ checks because original CL landed > 1 day ago. Bug: v8:5909 Change-Id: Ibf84401e8050d3c84db219d983de2c6bba0f697f Reviewed-on: https://chromium-review.googlesource.com/518102 Reviewed-by: Michael Achenbach <machenbach@chromium.org> Commit-Queue: Michael Achenbach <machenbach@chromium.org> Cr-Commit-Position: refs/heads/master@{#45547}
2017-05-29 06:28:04 +00:00
}
#nested1();
nested2();
function nested1() {
#Array.from([1,2]).map(() => 1).filter(() => true);
}
function nested1() {
Array.#from([1,2]).map(() => 1).filter(() => true);
}
function nested1() {
Array.from([1,2]).#map(() => 1).filter(() => true);
}
function nested1() {
Array.from([1,2]).map(() => #1).filter(() => true);
}
function nested1() {
Array.from([1,2]).map(() => 1#).filter(() => true);
}
function nested1() {
Array.from([1,2]).map(() => #1).filter(() => true);
}
function nested1() {
Array.from([1,2]).map(() => 1#).filter(() => true);
}
function nested1() {
Array.from([1,2]).map(() => 1).#filter(() => true);
}
function nested1() {
Array.from([1,2]).map(() => 1).filter(() => #true);
}
function nested1() {
Array.from([1,2]).map(() => 1).filter(() => true#);
}
function nested1() {
Array.from([1,2]).map(() => 1).filter(() => #true);
}
function nested1() {
Array.from([1,2]).map(() => 1).filter(() => true#);
}
Array.from([1,2]).map(() => 1).filter(() => true);
#}
function nested2() {
nested1();
#nested2();
}
function nested2() {
#Array.from([1,2]).map(() => 1).filter(() => true);
}
function nested2() {
Array.#from([1,2]).map(() => 1).filter(() => true);
}
function nested2() {
Array.from([1,2]).#map(() => 1).filter(() => true);
}
function nested2() {
Array.from([1,2]).map(() => #1).filter(() => true);
}
function nested2() {
Array.from([1,2]).map(() => 1#).filter(() => true);
}
function nested2() {
Array.from([1,2]).map(() => #1).filter(() => true);
}
function nested2() {
Array.from([1,2]).map(() => 1#).filter(() => true);
}
function nested2() {
Array.from([1,2]).map(() => 1).#filter(() => true);
}
function nested2() {
Array.from([1,2]).map(() => 1).filter(() => #true);
}
function nested2() {
Array.from([1,2]).map(() => 1).filter(() => true#);
}
function nested2() {
Array.from([1,2]).map(() => 1).filter(() => #true);
}
function nested2() {
Array.from([1,2]).map(() => 1).filter(() => true#);
}
Array.from([1,2]).map(() => 1).filter(() => true);
#}
nested1();
nested2();
#}