Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(343)

Unified Diff: Source/bindings/tests/results/V8TestObject.cpp

Issue 23471005: Use UNLIKELY() macro in generated bindings for minimum argument count checks (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/bindings/tests/results/V8TestObject.cpp
diff --git a/Source/bindings/tests/results/V8TestObject.cpp b/Source/bindings/tests/results/V8TestObject.cpp
index 6cc02637292be24bed58984ead36b6280ad9db4d..c511c635d47128dbf3b04866230676f33801de2d 100644
--- a/Source/bindings/tests/results/V8TestObject.cpp
+++ b/Source/bindings/tests/results/V8TestObject.cpp
@@ -2967,7 +2967,7 @@ static void voidMethodMethodCallback(const v8::FunctionCallbackInfo<v8::Value>&
static void voidMethodWithArgsMethod(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 3) {
+ if (UNLIKELY(args.Length() < 3)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -3003,7 +3003,7 @@ static void longMethodMethodCallback(const v8::FunctionCallbackInfo<v8::Value>&
static void longMethodWithArgsMethod(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 3) {
+ if (UNLIKELY(args.Length() < 3)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -3039,7 +3039,7 @@ static void objMethodMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& a
static void objMethodWithArgsMethod(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 3) {
+ if (UNLIKELY(args.Length() < 3)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -3060,7 +3060,7 @@ static void objMethodWithArgsMethodCallback(const v8::FunctionCallbackInfo<v8::V
static void methodWithSequenceArgMethod(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -3080,7 +3080,7 @@ static void methodWithSequenceArgMethodCallback(const v8::FunctionCallbackInfo<v
static void methodReturningSequenceMethod(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -3099,7 +3099,7 @@ static void methodReturningSequenceMethodCallback(const v8::FunctionCallbackInfo
static void methodWithEnumArgMethod(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -3124,7 +3124,7 @@ static void methodWithEnumArgMethodCallback(const v8::FunctionCallbackInfo<v8::V
static void methodThatRequiresAllArgsAndThrowsMethod(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 2) {
+ if (UNLIKELY(args.Length() < 2)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -3148,7 +3148,7 @@ static void methodThatRequiresAllArgsAndThrowsMethodCallback(const v8::FunctionC
static void serializedValueMethod(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -3171,7 +3171,7 @@ static void serializedValueMethodCallback(const v8::FunctionCallbackInfo<v8::Val
static void optionsObjectMethod(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -3506,7 +3506,7 @@ static void withActiveWindowAndFirstWindowMethodCallback(const v8::FunctionCallb
static void methodWithOptionalArgMethod(const v8::FunctionCallbackInfo<v8::Value>& args)
{
TestObj* imp = V8TestObject::toNative(args.Holder());
- if (args.Length() <= 0) {
+ if (UNLIKELY(args.Length() <= 0)) {
imp->methodWithOptionalArg();
return;
@@ -3526,13 +3526,13 @@ static void methodWithOptionalArgMethodCallback(const v8::FunctionCallbackInfo<v
static void methodWithNonOptionalArgAndOptionalArgMethod(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
TestObj* imp = V8TestObject::toNative(args.Holder());
V8TRYCATCH_VOID(int, nonOpt, toInt32(args[0]));
- if (args.Length() <= 1) {
+ if (UNLIKELY(args.Length() <= 1)) {
imp->methodWithNonOptionalArgAndOptionalArg(nonOpt);
return;
@@ -3552,19 +3552,19 @@ static void methodWithNonOptionalArgAndOptionalArgMethodCallback(const v8::Funct
static void methodWithNonOptionalArgAndTwoOptionalArgsMethod(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
TestObj* imp = V8TestObject::toNative(args.Holder());
V8TRYCATCH_VOID(int, nonOpt, toInt32(args[0]));
- if (args.Length() <= 1) {
+ if (UNLIKELY(args.Length() <= 1)) {
imp->methodWithNonOptionalArgAndTwoOptionalArgs(nonOpt);
return;
}
V8TRYCATCH_VOID(int, opt1, toInt32(args[1]));
- if (args.Length() <= 2) {
+ if (UNLIKELY(args.Length() <= 2)) {
imp->methodWithNonOptionalArgAndTwoOptionalArgs(nonOpt, opt1);
return;
@@ -3585,7 +3585,7 @@ static void methodWithNonOptionalArgAndTwoOptionalArgsMethodCallback(const v8::F
static void methodWithOptionalStringMethod(const v8::FunctionCallbackInfo<v8::Value>& args)
{
TestObj* imp = V8TestObject::toNative(args.Holder());
- if (args.Length() <= 0) {
+ if (UNLIKELY(args.Length() <= 0)) {
imp->methodWithOptionalString();
return;
@@ -3637,7 +3637,7 @@ static void methodWithOptionalStringIsNullStringMethodCallback(const v8::Functio
static void methodWithCallbackArgMethod(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -3661,7 +3661,7 @@ static void methodWithCallbackArgMethodCallback(const v8::FunctionCallbackInfo<v
static void methodWithNonCallbackArgAndCallbackArgMethod(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 2) {
+ if (UNLIKELY(args.Length() < 2)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -3709,7 +3709,7 @@ static void methodWithCallbackAndOptionalArgMethodCallback(const v8::FunctionCal
static void methodWithNullableCallbackArgMethod(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -3755,7 +3755,7 @@ static void staticMethodWithCallbackAndOptionalArgMethodCallback(const v8::Funct
static void staticMethodWithCallbackArgMethod(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -3778,7 +3778,7 @@ static void staticMethodWithCallbackArgMethodCallback(const v8::FunctionCallback
static void methodWithEnforceRangeInt8Method(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -3798,7 +3798,7 @@ static void methodWithEnforceRangeInt8MethodCallback(const v8::FunctionCallbackI
static void methodWithEnforceRangeUInt8Method(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -3818,7 +3818,7 @@ static void methodWithEnforceRangeUInt8MethodCallback(const v8::FunctionCallback
static void methodWithEnforceRangeInt32Method(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -3838,7 +3838,7 @@ static void methodWithEnforceRangeInt32MethodCallback(const v8::FunctionCallback
static void methodWithEnforceRangeUInt32Method(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -3858,7 +3858,7 @@ static void methodWithEnforceRangeUInt32MethodCallback(const v8::FunctionCallbac
static void methodWithEnforceRangeInt64Method(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -3878,7 +3878,7 @@ static void methodWithEnforceRangeInt64MethodCallback(const v8::FunctionCallback
static void methodWithEnforceRangeUInt64Method(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -3980,7 +3980,7 @@ static void callbackFunctionReturnValueMethodCallback(const v8::FunctionCallback
static void callbackFunctionArgumentMethod(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4000,7 +4000,7 @@ static void callbackFunctionArgumentMethodCallback(const v8::FunctionCallbackInf
static void overloadedMethod1Method(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 2) {
+ if (UNLIKELY(args.Length() < 2)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4014,13 +4014,13 @@ static void overloadedMethod1Method(const v8::FunctionCallbackInfo<v8::Value>& a
static void overloadedMethod2Method(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
TestObj* imp = V8TestObject::toNative(args.Holder());
V8TRYCATCH_VOID(TestObj*, objArg, V8TestObject::HasInstance(args[0], args.GetIsolate(), worldType(args.GetIsolate())) ? V8TestObject::toNative(v8::Handle<v8::Object>::Cast(args[0])) : 0);
- if (args.Length() <= 1) {
+ if (UNLIKELY(args.Length() <= 1)) {
imp->overloadedMethod(objArg);
return;
@@ -4033,7 +4033,7 @@ static void overloadedMethod2Method(const v8::FunctionCallbackInfo<v8::Value>& a
static void overloadedMethod3Method(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4046,7 +4046,7 @@ static void overloadedMethod3Method(const v8::FunctionCallbackInfo<v8::Value>& a
static void overloadedMethod4Method(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4059,7 +4059,7 @@ static void overloadedMethod4Method(const v8::FunctionCallbackInfo<v8::Value>& a
static void overloadedMethod5Method(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4076,7 +4076,7 @@ static void overloadedMethod5Method(const v8::FunctionCallbackInfo<v8::Value>& a
static void overloadedMethod6Method(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4089,7 +4089,7 @@ static void overloadedMethod6Method(const v8::FunctionCallbackInfo<v8::Value>& a
static void overloadedMethod7Method(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4102,7 +4102,7 @@ static void overloadedMethod7Method(const v8::FunctionCallbackInfo<v8::Value>& a
static void overloadedMethod8Method(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4115,7 +4115,7 @@ static void overloadedMethod8Method(const v8::FunctionCallbackInfo<v8::Value>& a
static void overloadedMethod9Method(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4128,7 +4128,7 @@ static void overloadedMethod9Method(const v8::FunctionCallbackInfo<v8::Value>& a
static void overloadedMethod10Method(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4141,7 +4141,7 @@ static void overloadedMethod10Method(const v8::FunctionCallbackInfo<v8::Value>&
static void overloadedMethod11Method(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4198,7 +4198,7 @@ static void overloadedMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& ar
overloadedMethod11Method(args);
return;
}
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4228,7 +4228,7 @@ static void classMethodMethodCallback(const v8::FunctionCallbackInfo<v8::Value>&
static void classMethodWithOptionalMethod(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() <= 0) {
+ if (UNLIKELY(args.Length() <= 0)) {
v8SetReturnValueInt(args, TestObj::classMethodWithOptional());
return;
}
@@ -4255,7 +4255,7 @@ static void classMethod2MethodCallback(const v8::FunctionCallbackInfo<v8::Value>
static void overloadedMethod11Method(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4271,7 +4271,7 @@ static void overloadedMethod11Method(const v8::FunctionCallbackInfo<v8::Value>&
static void overloadedMethod12Method(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4295,7 +4295,7 @@ static void overloadedMethod1Method(const v8::FunctionCallbackInfo<v8::Value>& a
overloadedMethod12Method(args);
return;
}
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4317,7 +4317,7 @@ static void overloadedMethod1MethodCallback(const v8::FunctionCallbackInfo<v8::V
static void classMethodWithClampMethod(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 2) {
+ if (UNLIKELY(args.Length() < 2)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4344,7 +4344,7 @@ static void classMethodWithClampMethodCallback(const v8::FunctionCallbackInfo<v8
static void enabledAtRuntimeMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4364,7 +4364,7 @@ static void enabledAtRuntimeMethodMethodCallback(const v8::FunctionCallbackInfo<
static void enabledPerContextMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4384,7 +4384,7 @@ static void enabledPerContextMethodMethodCallback(const v8::FunctionCallbackInfo
static void methodWithUnsignedLongSequenceMethod(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4404,7 +4404,7 @@ static void methodWithUnsignedLongSequenceMethodCallback(const v8::FunctionCallb
static void stringArrayFunctionMethod(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4427,7 +4427,7 @@ static void stringArrayFunctionMethodCallback(const v8::FunctionCallbackInfo<v8:
static void domStringListFunctionMethod(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4472,7 +4472,7 @@ static void getSVGDocumentMethodCallback(const v8::FunctionCallbackInfo<v8::Valu
static void convert1Method(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4492,7 +4492,7 @@ static void convert1MethodCallback(const v8::FunctionCallbackInfo<v8::Value>& ar
static void convert2Method(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4512,7 +4512,7 @@ static void convert2MethodCallback(const v8::FunctionCallbackInfo<v8::Value>& ar
static void convert4Method(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4532,7 +4532,7 @@ static void convert4MethodCallback(const v8::FunctionCallbackInfo<v8::Value>& ar
static void convert5Method(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4595,7 +4595,7 @@ static void orangeMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& args
static void strictFunctionMethod(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 3) {
+ if (UNLIKELY(args.Length() < 3)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4620,7 +4620,7 @@ static void strictFunctionMethodCallback(const v8::FunctionCallbackInfo<v8::Valu
static void variadicStringMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4641,7 +4641,7 @@ static void variadicStringMethodMethodCallback(const v8::FunctionCallbackInfo<v8
static void variadicDoubleMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4662,7 +4662,7 @@ static void variadicDoubleMethodMethodCallback(const v8::FunctionCallbackInfo<v8
static void variadicNodeMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4720,7 +4720,7 @@ static void perWorldMethodMethodCallbackForMainWorld(const v8::FunctionCallbackI
static void overloadedPerWorldMethod1Method(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4733,7 +4733,7 @@ static void overloadedPerWorldMethod1Method(const v8::FunctionCallbackInfo<v8::V
static void overloadedPerWorldMethod1MethodForMainWorld(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4746,7 +4746,7 @@ static void overloadedPerWorldMethod1MethodForMainWorld(const v8::FunctionCallba
static void overloadedPerWorldMethod2Method(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 2) {
+ if (UNLIKELY(args.Length() < 2)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4760,7 +4760,7 @@ static void overloadedPerWorldMethod2Method(const v8::FunctionCallbackInfo<v8::V
static void overloadedPerWorldMethod2MethodForMainWorld(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 2) {
+ if (UNLIKELY(args.Length() < 2)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4782,7 +4782,7 @@ static void overloadedPerWorldMethodMethod(const v8::FunctionCallbackInfo<v8::Va
overloadedPerWorldMethod2Method(args);
return;
}
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4799,7 +4799,7 @@ static void overloadedPerWorldMethodMethodForMainWorld(const v8::FunctionCallbac
overloadedPerWorldMethod2MethodForMainWorld(args);
return;
}
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4822,7 +4822,7 @@ static void overloadedPerWorldMethodMethodCallbackForMainWorld(const v8::Functio
static void activityLoggedMethod1Method(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4847,7 +4847,7 @@ static void activityLoggedMethod1MethodCallback(const v8::FunctionCallbackInfo<v
static void activityLoggedMethod2Method(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4860,7 +4860,7 @@ static void activityLoggedMethod2Method(const v8::FunctionCallbackInfo<v8::Value
static void activityLoggedMethod2MethodForMainWorld(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4897,7 +4897,7 @@ static void activityLoggedMethod2MethodCallbackForMainWorld(const v8::FunctionCa
static void activityLoggedInIsolatedWorldMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4910,7 +4910,7 @@ static void activityLoggedInIsolatedWorldMethodMethod(const v8::FunctionCallback
static void activityLoggedInIsolatedWorldMethodMethodForMainWorld(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4942,7 +4942,7 @@ static void activityLoggedInIsolatedWorldMethodMethodCallbackForMainWorld(const
static void overloadedActivityLoggedMethod1Method(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4955,7 +4955,7 @@ static void overloadedActivityLoggedMethod1Method(const v8::FunctionCallbackInfo
static void overloadedActivityLoggedMethod1MethodForMainWorld(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4968,7 +4968,7 @@ static void overloadedActivityLoggedMethod1MethodForMainWorld(const v8::Function
static void overloadedActivityLoggedMethod2Method(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 2) {
+ if (UNLIKELY(args.Length() < 2)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -4982,7 +4982,7 @@ static void overloadedActivityLoggedMethod2Method(const v8::FunctionCallbackInfo
static void overloadedActivityLoggedMethod2MethodForMainWorld(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 2) {
+ if (UNLIKELY(args.Length() < 2)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -5004,7 +5004,7 @@ static void overloadedActivityLoggedMethodMethod(const v8::FunctionCallbackInfo<
overloadedActivityLoggedMethod2Method(args);
return;
}
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -5021,7 +5021,7 @@ static void overloadedActivityLoggedMethodMethodForMainWorld(const v8::FunctionC
overloadedActivityLoggedMethod2MethodForMainWorld(args);
return;
}
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}
@@ -5085,7 +5085,7 @@ static void deprecatedStaticMethodMethodCallback(const v8::FunctionCallbackInfo<
static void constructor(const v8::FunctionCallbackInfo<v8::Value>& args)
{
- if (args.Length() < 1) {
+ if (UNLIKELY(args.Length() < 1)) {
throwNotEnoughArgumentsError(args.GetIsolate());
return;
}

Powered by Google App Engine
This is Rietveld 408576698