| Index: Source/bindings/tests/results/V8TestInterfaceGarbageCollected.cpp
|
| diff --git a/Source/bindings/tests/results/V8TestInterfaceGarbageCollected.cpp b/Source/bindings/tests/results/V8TestInterfaceGarbageCollected.cpp
|
| index dab6beeeee07edc21c48567fd86abd3319e37fd1..9eff73f451c9ed291bef39a71a32244c8b597dda 100644
|
| --- a/Source/bindings/tests/results/V8TestInterfaceGarbageCollected.cpp
|
| +++ b/Source/bindings/tests/results/V8TestInterfaceGarbageCollected.cpp
|
| @@ -75,7 +75,7 @@ static void attr1AttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Va
|
| static void funcMethod(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| {
|
| if (UNLIKELY(info.Length() < 1)) {
|
| - throwArityTypeErrorForMethod("func", "TestInterfaceGarbageCollected", 1, info.Length(), info.GetIsolate());
|
| + throwMinimumArityTypeErrorForMethod("func", "TestInterfaceGarbageCollected", 1, info.Length(), info.GetIsolate());
|
| return;
|
| }
|
| TestInterfaceGarbageCollected* impl = V8TestInterfaceGarbageCollected::toNative(info.Holder());
|
| @@ -94,7 +94,7 @@ static void constructor(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| {
|
| v8::Isolate* isolate = info.GetIsolate();
|
| if (UNLIKELY(info.Length() < 1)) {
|
| - throwArityTypeErrorForConstructor("TestInterfaceGarbageCollected", 1, info.Length(), info.GetIsolate());
|
| + throwMinimumArityTypeErrorForConstructor("TestInterfaceGarbageCollected", 1, info.Length(), info.GetIsolate());
|
| return;
|
| }
|
| TOSTRING_VOID(V8StringResource<>, str, info[0]);
|
|
|