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

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: fix Created 4 years, 9 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
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("", RegExp.$1);
6 assertEquals("", RegExp.$2);
7 assertEquals("", RegExp.$3);
8 assertEquals("", RegExp.$4);
9 assertEquals("", RegExp.$5);
10 assertEquals("", RegExp.$6);
11 assertEquals("", RegExp.$7);
12 assertEquals("", RegExp.$8);
13 assertEquals("", RegExp.$9);
14
15 assertEquals("", RegExp.lastMatch);
16 assertEquals("", RegExp.lastParen);
17 assertEquals("", RegExp.leftContext);
18 assertEquals("", RegExp.rightContext);
19 assertEquals("", RegExp.input);
OLDNEW
« src/js/regexp.js ('K') | « src/js/regexp.js ('k') | test/intl/testcfg.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698