| Index: Source/bindings/tests/results/V8TestCustomAccessors.cpp
|
| diff --git a/Source/bindings/tests/results/V8TestCustomAccessors.cpp b/Source/bindings/tests/results/V8TestCustomAccessors.cpp
|
| index 54ad64f46995703b82da214f363f6f2f1618b03a..37ad08ab8806367abb0867664b9d627a8d0d635f 100644
|
| --- a/Source/bindings/tests/results/V8TestCustomAccessors.cpp
|
| +++ b/Source/bindings/tests/results/V8TestCustomAccessors.cpp
|
| @@ -22,6 +22,7 @@
|
| #include "V8TestCustomAccessors.h"
|
|
|
| #include "RuntimeEnabledFeatures.h"
|
| +#include "bindings/v8/ExceptionMessages.h"
|
| #include "bindings/v8/ExceptionState.h"
|
| #include "bindings/v8/ScriptController.h"
|
| #include "bindings/v8/V8Binding.h"
|
| @@ -63,7 +64,7 @@ template <typename T> void V8_USE(T) { }
|
| static void anotherFunctionMethod(const v8::FunctionCallbackInfo<v8::Value>& args)
|
| {
|
| if (UNLIKELY(args.Length() < 1)) {
|
| - throwNotEnoughArgumentsError(args.GetIsolate());
|
| + throwTypeError(ExceptionMessages::failedToExecute("anotherFunction", "TestCustomAccessors", ExceptionMessages::notEnoughArguments(1, args.Length())), args.GetIsolate());
|
| return;
|
| }
|
| TestCustomAccessors* imp = V8TestCustomAccessors::toNative(args.Holder());
|
|
|