diff options
Diffstat (limited to 'deps/v8/src/runtime.js')
-rw-r--r-- | deps/v8/src/runtime.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/deps/v8/src/runtime.js b/deps/v8/src/runtime.js index d4b49704ae..df26b8894a 100644 --- a/deps/v8/src/runtime.js +++ b/deps/v8/src/runtime.js @@ -391,8 +391,9 @@ function CALL_NON_FUNCTION_AS_CONSTRUCTOR() { function APPLY_PREPARE(args) { var length; - // First check whether length is a positive Smi and args is an array. This is the - // fast case. If this fails, we do the slow case that takes care of more eventualities + // First check whether length is a positive Smi and args is an + // array. This is the fast case. If this fails, we do the slow case + // that takes care of more eventualities. if (%_IsArray(args)) { length = args.length; if (%_IsSmi(length) && length >= 0 && length < 0x800000 && IS_FUNCTION(this)) { |