2019-10-21 01:05:40 -06:00
|
|
|
// Copyright 2019 The Chromium Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE.chromium file.
|
|
|
|
|
2024-01-10 18:00:37 -07:00
|
|
|
#include <string_view>
|
|
|
|
|
2019-10-21 01:05:40 -06:00
|
|
|
#include "shell/common/gin_helper/arguments.h"
|
|
|
|
|
2021-09-01 13:55:07 -06:00
|
|
|
#include "v8/include/v8-exception.h"
|
2019-10-21 01:05:40 -06:00
|
|
|
namespace gin_helper {
|
|
|
|
|
|
|
|
void Arguments::ThrowError() const {
|
|
|
|
// Gin advances |next_| counter when conversion fails while we do not, so we
|
|
|
|
// have to manually advance the counter here to make gin report error with the
|
|
|
|
// correct index.
|
|
|
|
const_cast<Arguments*>(this)->Skip();
|
|
|
|
gin::Arguments::ThrowError();
|
|
|
|
}
|
|
|
|
|
2024-01-10 18:00:37 -07:00
|
|
|
void Arguments::ThrowError(const std::string_view message) const {
|
2019-10-21 01:05:40 -06:00
|
|
|
isolate()->ThrowException(
|
|
|
|
v8::Exception::Error(gin::StringToV8(isolate(), message)));
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace gin_helper
|