• Clemens Hammacher's avatar
    [wasm] Refactor wasm::Result type · d50ebde7
    Clemens Hammacher authored
    - Store std::string instead of std::unique_ptr<char[]> for the error
      message.
    - Remove ErrorCode, which was just kSuccess and kError anyway. Error is
      now detected on whether error_msg_ is empty or not.
    - Refactor constructors for perfect forwarding; this will allow us to
      implement Result<std::unique_ptr<X*>>.
    - Refactor Decoder::toResult for perfect forwarding.
    - Remove output operators (operator<<) for Result; it was only used in
      the error case anyway. Print error message directly instead.
      The operator was problematic since it assumed the existence of an
      output operator for every T which is used in Result<T>.
    - Remove ModuleError and FunctionError, introduce general static
      Result<T>::Error method instead.
    
    R=ahaas@chromium.org
    
    Change-Id: I1e0f602a61ee9780fee2a3ed33147d431fb092ba
    Reviewed-on: https://chromium-review.googlesource.com/472748
    Commit-Queue: Clemens Hammacher <clemensh@chromium.org>
    Reviewed-by: 's avatarAndreas Haas <ahaas@chromium.org>
    Cr-Commit-Position: refs/heads/master@{#44518}
    d50ebde7
Name
Last commit
Last update
benchmarks Loading commit data...
build_overrides Loading commit data...
docs Loading commit data...
gni Loading commit data...
gypfiles 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...
.gitignore Loading commit data...
.gn 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...
ChangeLog Loading commit data...
DEPS Loading commit data...
LICENSE Loading commit data...
LICENSE.fdlibm Loading commit data...
LICENSE.strongtalk Loading commit data...
LICENSE.v8 Loading commit data...
LICENSE.valgrind Loading commit data...
Makefile Loading commit data...
Makefile.android Loading commit data...
OWNERS Loading commit data...
PRESUBMIT.py Loading commit data...
README.md Loading commit data...
WATCHLISTS Loading commit data...
codereview.settings Loading commit data...
snapshot_toolchain.gni Loading commit data...