2019-10-21 07:05:40 +00: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.
|
|
|
|
|
|
|
|
#include "shell/common/gin_helper/arguments.h"
|
|
|
|
|
2021-09-01 19:55:07 +00:00
|
|
|
#include "v8/include/v8-exception.h"
|
2019-10-21 07:05:40 +00: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();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Arguments::ThrowError(base::StringPiece message) const {
|
|
|
|
isolate()->ThrowException(
|
|
|
|
v8::Exception::Error(gin::StringToV8(isolate(), message)));
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace gin_helper
|