Revision: 14504
Author:   [email protected]
Date:     Tue Apr 30 10:56:32 2013
Log:      Revert "patch from issue 13993029"

This reverts commit 2d49d456dd09a8f8ffae87f777d5f10b587534e8.
Revert patch with incorrect description
http://code.google.com/p/v8/source/detail?r=14504

Modified:
 /branches/bleeding_edge/src/typedarray.js

=======================================
--- /branches/bleeding_edge/src/typedarray.js   Tue Apr 30 10:50:04 2013
+++ /branches/bleeding_edge/src/typedarray.js   Tue Apr 30 10:56:32 2013
@@ -86,7 +86,8 @@

function CreateTypedArrayConstructor(name, elementSize, arrayId, constructor) {
   function ConstructByArrayBuffer(obj, buffer, byteOffset, length) {
- var offset = IS_UNDEFINED(byteOffset) ? 0 : TO_POSITIVE_INTEGER(byteOffset);
+    var offset = IS_UNDEFINED(byteOffset)
+      ? 0 : offset = TO_POSITIVE_INTEGER(byteOffset);

     if (offset % elementSize !== 0) {
       throw MakeRangeError("invalid_typed_array_alignment",

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to