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

Side by Side Diff: test/mjsunit/es6/regexp-prototype.js

Issue 1423993006: RegExp.prototype is an ordinary object. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebase 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 unified diff | Download patch
« no previous file with comments | « src/js/regexp.js ('k') | test/mjsunit/messages.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 2015 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 // ES6 21.2.4.1
6 var proto_desc = Object.getOwnPropertyDescriptor(RegExp, "prototype");
7 assertFalse(proto_desc.writable);
8 assertFalse(proto_desc.enumerable);
9 assertFalse(proto_desc.configurable);
10
11 // ES6 21.2.5.1
12 var proto = proto_desc.value;
13 assertFalse(proto instanceof RegExp);
14 assertEquals(undefined, Object.getOwnPropertyDescriptor(proto, "valueOf"));
15 assertEquals(proto.valueOf, Object.prototype.valueOf);
16 var proto_constr = Object.getOwnPropertyDescriptor(proto, "constructor");
17 assertEquals(RegExp, proto_constr.value);
OLDNEW
« no previous file with comments | « src/js/regexp.js ('k') | test/mjsunit/messages.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698