• Simon Zünd's avatar
    Implement top-level await for REPL mode · 5bddc0e1
    Simon Zünd authored
    Design doc: bit.ly/v8-repl-mode
    
    This CL allows the usage of 'await' without wrapping code in an async
    function when using REPL mode in global evaluate. REPL mode evaluate
    is changed to *always* return a Promise. The resolve value of the
    promise is the completion value of the REPL script.
    
    The implementation is based on two existing mechanisms:
      - Similar to async functions, the content of a REPL script is
        enclosed in a synthetic 'try' block. Any thrown error
        is used to reject the Promise of the REPL script.
    
      - The content of the synthetic 'try' block is also re-written the
        same way a normal script is. This is, artificial assignments to
        a ".result" variable are inserted to simulate a completion
        value. The difference for REPL scripts is, that ".result" is
        used to resolve the Promise of the REPL script.
    
      - ".result" is not returned directly but wrapped in an object
        literal: "{ .repl_result: .result}". This is done to prevent
        resolved promises from being chained and resolved prematurely:
    
        > Promse.resolve(42);
    
        should evaluate to a promise, not 42.
    
    Bug: chromium:1021921
    Change-Id: I00a5aafd9126ca7c97d09cd8787a3aec2821a67f
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1900464Reviewed-by: 's avatarYang Guo <yangguo@chromium.org>
    Reviewed-by: 's avatarLeszek Swirski <leszeks@chromium.org>
    Reviewed-by: 's avatarToon Verwaest <verwaest@chromium.org>
    Commit-Queue: Simon Zünd <szuend@chromium.org>
    Cr-Commit-Position: refs/heads/master@{#65273}
    5bddc0e1
Name
Last commit
Last update
..
BUILD.gn Loading commit data...
DEPS Loading commit data...
OWNERS Loading commit data...
custom-preview.cc Loading commit data...
custom-preview.h Loading commit data...
injected-script.cc Loading commit data...
injected-script.h Loading commit data...
inspected-context.cc Loading commit data...
inspected-context.h Loading commit data...
inspector_protocol_config.json Loading commit data...
remote-object-id.cc Loading commit data...
remote-object-id.h Loading commit data...
search-util.cc Loading commit data...
search-util.h Loading commit data...
string-16.cc Loading commit data...
string-16.h Loading commit data...
string-util.cc Loading commit data...
string-util.h Loading commit data...
test-interface.cc Loading commit data...
test-interface.h Loading commit data...
v8-console-agent-impl.cc Loading commit data...
v8-console-agent-impl.h Loading commit data...
v8-console-message.cc Loading commit data...
v8-console-message.h Loading commit data...
v8-console.cc Loading commit data...
v8-console.h Loading commit data...
v8-debugger-agent-impl.cc Loading commit data...
v8-debugger-agent-impl.h Loading commit data...
v8-debugger-script.cc Loading commit data...
v8-debugger-script.h Loading commit data...
v8-debugger.cc Loading commit data...
v8-debugger.h Loading commit data...
v8-heap-profiler-agent-impl.cc Loading commit data...
v8-heap-profiler-agent-impl.h Loading commit data...
v8-inspector-impl.cc Loading commit data...
v8-inspector-impl.h Loading commit data...
v8-inspector-session-impl.cc Loading commit data...
v8-inspector-session-impl.h Loading commit data...
v8-profiler-agent-impl.cc Loading commit data...
v8-profiler-agent-impl.h Loading commit data...
v8-regex.cc Loading commit data...
v8-regex.h Loading commit data...
v8-runtime-agent-impl.cc Loading commit data...
v8-runtime-agent-impl.h Loading commit data...
v8-schema-agent-impl.cc Loading commit data...
v8-schema-agent-impl.h Loading commit data...
v8-stack-trace-impl.cc Loading commit data...
v8-stack-trace-impl.h Loading commit data...
v8-string-conversions.cc Loading commit data...
v8-string-conversions.h Loading commit data...
v8-value-utils.cc Loading commit data...
v8-value-utils.h Loading commit data...
value-mirror.cc Loading commit data...
value-mirror.h Loading commit data...
wasm-translation.cc Loading commit data...
wasm-translation.h Loading commit data...