Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / RegExp / S15.10.3.1_A1_T4.js
blob8f8d32b5a4ad86622351c37f387478269c2d1231
1 // Copyright 2009 the Sputnik authors.  All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
4 /*---
5 info: |
6     If pattern is an object R whose [[Class]] property is "RegExp" and flags
7     is undefined, then return R unchanged
8 es5id: 15.10.3.1_A1_T4
9 description: R is new RegExp() and instance is RegExp(R, void 0)
10 ---*/
12 var __re = RegExp();
13 var __instance = RegExp(__re, void 0);
14 __re.indicator = 1;
16 assert.sameValue(__instance.indicator, 1, 'The value of __instance.indicator is expected to be 1');
18 reportCompare(0, 0);