• Wiktor Garbacz's avatar
    [parse tasks] Fix arrow function parameters handling. · 9a572e1d
    Wiktor Garbacz authored
    Formal parameters of an arrow function are parsed even if the function
    itself is preparsed. It is because we don't know if it is an arrow
    function parameter list or just comma separated expression list.
    When we parse:
     (a, b = (function c() { return a; })())
    call to function c may be just part of an assignment in an expression
    list, but if it's followed by:
     => { return b; }
    It is an arrow function and the call to c is a default parameter.
    Before we see the arrow we might have already created a parse task
    to parse function c.
    
    BUG=v8:6093
    
    Change-Id: I59a59acfdbbfd808dab1518060748be2addcd54a
    Reviewed-on: https://chromium-review.googlesource.com/493347
    Commit-Queue: Wiktor Garbacz <wiktorg@google.com>
    Reviewed-by: 's avatarMarja Hölttä <marja@chromium.org>
    Reviewed-by: 's avatarDaniel Vogelheim <vogelheim@chromium.org>
    Cr-Commit-Position: refs/heads/master@{#45132}
    9a572e1d
Name
Last commit
Last update
..
benchmarks Loading commit data...
cctest Loading commit data...
common Loading commit data...
debugger Loading commit data...
fuzzer Loading commit data...
inspector Loading commit data...
intl Loading commit data...
js-perf-test Loading commit data...
memory Loading commit data...
message Loading commit data...
mjsunit Loading commit data...
mkgrokdump Loading commit data...
mozilla Loading commit data...
preparser Loading commit data...
promises-aplus Loading commit data...
test262 Loading commit data...
unittests Loading commit data...
wasm-spec-tests Loading commit data...
webkit Loading commit data...
BUILD.gn Loading commit data...
bot_default.gyp Loading commit data...
bot_default.isolate Loading commit data...
default.gyp Loading commit data...
default.isolate Loading commit data...
optimize_for_size.gyp Loading commit data...
optimize_for_size.isolate Loading commit data...
perf.gyp Loading commit data...
perf.isolate Loading commit data...