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

Unified Diff: test/mjsunit/harmony/typedarrays.js

Issue 659313002: Revert "Correct semantics for numerically indexed stores to typed arrays." (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 2 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
« no previous file with comments | « src/objects.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/harmony/typedarrays.js
diff --git a/test/mjsunit/harmony/typedarrays.js b/test/mjsunit/harmony/typedarrays.js
index 59d09bb232fa97d6212143d2c9322212f0d6d830..5b75874cd40685897393613ab693a521318eb828 100644
--- a/test/mjsunit/harmony/typedarrays.js
+++ b/test/mjsunit/harmony/typedarrays.js
@@ -481,85 +481,6 @@ function TestTypedArraySet() {
TestTypedArraySet();
-function TestTypedArraysWithIllegalIndices() {
- var a = new Int32Array(100);
-
- a[-10] = 10;
- assertEquals(undefined, a[-10]);
- a["-10"] = 10;
- assertEquals(undefined, a["-10"]);
-
- var s = " -10";
- a[s] = 10;
- assertEquals(10, a[s]);
- var s1 = " -10 ";
- a[s] = 10;
- assertEquals(10, a[s]);
-
- a["-1e2"] = 10;
- assertEquals(10, a["-1e2"]);
- assertEquals(undefined, a[-1e2]);
-
- a[-Infinity] = 50;
- assertEquals(undefined, a[-Infinity]);
- a[1.5] = 10;
- assertEquals(undefined, a[1.5]);
- var nan = Math.sqrt(-1);
- a[nan] = 5;
- assertEquals(5, a[nan]);
-
- var x = 0;
- var y = -0;
- assertEquals(Infinity, 1/x);
- assertEquals(-Infinity, 1/y);
- a[x] = 5;
- a[y] = 27;
- assertEquals(27, a[x]);
- assertEquals(27, a[y]);
-}
-
-TestTypedArraysWithIllegalIndices();
-
-function TestTypedArraysWithIllegalIndicesStrict() {
- 'use strict';
- var a = new Int32Array(100);
-
- a[-10] = 10;
- assertEquals(undefined, a[-10]);
- a["-10"] = 10;
- assertEquals(undefined, a["-10"]);
-
- var s = " -10";
- a[s] = 10;
- assertEquals(10, a[s]);
- var s1 = " -10 ";
- a[s] = 10;
- assertEquals(10, a[s]);
-
- a["-1e2"] = 10;
- assertEquals(10, a["-1e2"]);
- assertEquals(undefined, a[-1e2]);
-
- a[-Infinity] = 50;
- assertEquals(undefined, a[-Infinity]);
- a[1.5] = 10;
- assertEquals(undefined, a[1.5]);
- var nan = Math.sqrt(-1);
- a[nan] = 5;
- assertEquals(5, a[nan]);
-
- var x = 0;
- var y = -0;
- assertEquals(Infinity, 1/x);
- assertEquals(-Infinity, 1/y);
- a[x] = 5;
- a[y] = 27;
- assertEquals(27, a[x]);
- assertEquals(27, a[y]);
-}
-
-TestTypedArraysWithIllegalIndicesStrict();
-
// DataView
function TestDataViewConstructor() {
var ab = new ArrayBuffer(256);
« no previous file with comments | « src/objects.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698