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

Unified Diff: test/mjsunit/harmony/regexp-tolength.js

Issue 1433473003: Ship Harmony ToLength (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix Mozilla test Created 5 years, 1 month 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: test/mjsunit/harmony/regexp-tolength.js
diff --git a/test/mjsunit/harmony/regexp-tolength.js b/test/mjsunit/harmony/regexp-tolength.js
deleted file mode 100644
index d9e967ba27dcbb3a1ee0f9a096b8cf6870c21d63..0000000000000000000000000000000000000000
--- a/test/mjsunit/harmony/regexp-tolength.js
+++ /dev/null
@@ -1,19 +0,0 @@
-// Copyright 2015 the V8 project authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// Flags: --harmony-tolength
-
-'use strict';
-
-let regexp = /x/g;
-
-regexp.lastIndex = -1;
-
-assertTrue(regexp.test("axb"));
-assertEquals(2, regexp.lastIndex);
-
-regexp.lastIndex = -1;
-
-assertEquals("x", regexp.exec("axb")[0]);
-assertEquals(2, regexp.lastIndex);

Powered by Google App Engine
This is Rietveld 408576698