Lines Matching refs:error_
78 error_(std::move(other.error_)) {}
80 explicit Result(WasmError error) : error_(std::move(error)) {}
85 error_ = std::move(other.error_);
89 bool ok() const { return error_.empty(); }
90 bool failed() const { return error_.has_error(); }
91 const WasmError& error() const& { return error_; }
92 WasmError&& error() && { return std::move(error_); }
112 WasmError error_;