S15.10.3.1_A1_T5.js (560B)
1 // Copyright 2009 the Sputnik authors. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 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_T5 9 description: R is /\b/m and instance is RegExp(R, undefined) 10 ---*/ 11 12 var __re = /\b/m; 13 var __instance = RegExp(__re, undefined); 14 __re.indicator = 1; 15 16 assert.sameValue(__instance.indicator, 1, 'The value of __instance.indicator is expected to be 1'); 17 18 reportCompare(0, 0);