1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/jit-test/tests/collections/Array-of-generic-3.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,7 @@ 1.4 +// |jit-test| error:TypeError 1.5 +// Array.of can be transplanted to builtin constructors. 1.6 + 1.7 +load(libdir + "asserts.js"); 1.8 + 1.9 +Uint8Array.of = Array.of; 1.10 +assertDeepEq(new Uint8Array.of(0x12, 0x34, 0x5678, 0x9abcdef), new Uint8Array([0x12, 0x34, 0x78, 0xef]));