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

Side by Side Diff: test/intl/regexp-assert.js

Issue 1819313002: [regexp, intl] Intl should not cause side effects to the RegExp object. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: addressed comment Created 4 years, 8 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 | « src/js/regexp.js ('k') | test/intl/regexp-prepare.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 assertEquals("a", RegExp.$1);
6 assertEquals("b", RegExp.$2);
7 assertEquals("c", RegExp.$3);
8 assertEquals("d", RegExp.$4);
9 assertEquals("e", RegExp.$5);
10 assertEquals("f", RegExp.$6);
11 assertEquals("g", RegExp.$7);
12 assertEquals("h", RegExp.$8);
13 assertEquals("i", RegExp.$9);
14
15 assertEquals("abcdefghij", RegExp.lastMatch);
16 assertEquals("j", RegExp.lastParen);
17 assertEquals(">>>", RegExp.leftContext);
18 assertEquals("<<<", RegExp.rightContext);
19 assertEquals(">>>abcdefghij<<<", RegExp.input);
OLDNEW
« no previous file with comments | « src/js/regexp.js ('k') | test/intl/regexp-prepare.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698