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

Side by Side Diff: test/mjsunit/harmony/unicode-escapes-in-regexps.js

Issue 903703002: Split --harmony-unicode and --harmony-unicode-regexps. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix Created 5 years, 10 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 unified diff | Download patch
« no previous file with comments | « test/mjsunit/harmony/regexp-flags.js ('k') | test/mjsunit/mirror-regexp.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // ES6 extends the \uxxxx escape and also allows \u{xxxxx}. 5 // ES6 extends the \uxxxx escape and also allows \u{xxxxx}.
6 6
7 // Flags: --harmony-unicode --harmony-regexps 7 // Flags: --harmony-unicode-regexps --harmony-regexps
8 8
9 function testRegexpHelper(r) { 9 function testRegexpHelper(r) {
10 assertTrue(r.test("foo")); 10 assertTrue(r.test("foo"));
11 assertTrue(r.test("boo")); 11 assertTrue(r.test("boo"));
12 assertFalse(r.test("moo")); 12 assertFalse(r.test("moo"));
13 } 13 }
14 14
15 15
16 (function TestUnicodeEscapes() { 16 (function TestUnicodeEscapes() {
17 testRegexpHelper(/(\u0066|\u0062)oo/); 17 testRegexpHelper(/(\u0066|\u0062)oo/);
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 203
204 204
205 (function ToString() { 205 (function ToString() {
206 // Test that the u flag is included in the string representation of regexps. 206 // Test that the u flag is included in the string representation of regexps.
207 function helper(r) { 207 function helper(r) {
208 assertEquals(r.toString(), "/foo/u"); 208 assertEquals(r.toString(), "/foo/u");
209 } 209 }
210 helper(/foo/u); 210 helper(/foo/u);
211 helper(new RegExp("foo", "u")); 211 helper(new RegExp("foo", "u"));
212 })(); 212 })();
OLDNEW
« no previous file with comments | « test/mjsunit/harmony/regexp-flags.js ('k') | test/mjsunit/mirror-regexp.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698