• Benedikt Meurer's avatar
    [debug][inspector] Use first rather than closest break location. · 16b0767a
    Benedikt Meurer authored
    In case there's no exact match for the breakable location in
    SetBreakpoint(), don't try to find the syntactically closest break
    location, but rather find the first possible break location in bytecode
    order. In particular when trying to set a breakpoint in a line with
    for-of or an array destruction, there's no point in going for the
    syntactically closest to the beginning of the line, but rather go for
    the semantically first, as the intiution for setting a breakpoint on a
    line is that the debugger stops before it executes anything on said
    line. In the example
    
    ```
    var [^a, ^b] = ^func();
    ```
    
    there are three possible break locations, and the correct one is the
    last one as the call to func will happen first at runtime.
    
    For generators that's currently broken because of the implicit initial
    yield, and same with modules (see crbug.com/901819), so we keep the
    previous behavior of finding the closest breakable location, and will
    fix that independently in a follow up CL.
    
    Bug: chromium:901819
    Fixed: chromium:782461
    Also-By: yangguo@chromium.org
    Change-Id: Ie724c5cb08e5f4edd90a450d99e001dff06bbe7a
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2696586
    Commit-Queue: Benedikt Meurer <bmeurer@chromium.org>
    Reviewed-by: 's avatarYang Guo <yangguo@chromium.org>
    Cr-Commit-Position: refs/heads/master@{#72813}
    16b0767a
Name
Last commit
Last update
.github Loading commit data...
build_overrides Loading commit data...
custom_deps Loading commit data...
docs Loading commit data...
gni Loading commit data...
include Loading commit data...
infra Loading commit data...
samples Loading commit data...
src Loading commit data...
test Loading commit data...
testing Loading commit data...
third_party Loading commit data...
tools Loading commit data...
.clang-format Loading commit data...
.clang-tidy Loading commit data...
.editorconfig Loading commit data...
.flake8 Loading commit data...
.git-blame-ignore-revs Loading commit data...
.gitattributes Loading commit data...
.gitignore Loading commit data...
.gn Loading commit data...
.vpython Loading commit data...
.ycm_extra_conf.py Loading commit data...
AUTHORS Loading commit data...
BUILD.gn Loading commit data...
CODE_OF_CONDUCT.md Loading commit data...
COMMON_OWNERS Loading commit data...
DEPS Loading commit data...
DIR_METADATA Loading commit data...
ENG_REVIEW_OWNERS Loading commit data...
INFRA_OWNERS Loading commit data...
INTL_OWNERS Loading commit data...
LICENSE Loading commit data...
LICENSE.fdlibm Loading commit data...
LICENSE.strongtalk Loading commit data...
LICENSE.v8 Loading commit data...
MIPS_OWNERS Loading commit data...
OWNERS Loading commit data...
PPC_OWNERS Loading commit data...
PRESUBMIT.py Loading commit data...
README.md Loading commit data...
RISCV_OWNERS Loading commit data...
S390_OWNERS Loading commit data...
WATCHLISTS Loading commit data...
codereview.settings Loading commit data...