S15.10.4.1_A8_T12.js (738B)
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: let P be ToString(pattern) and let F be ToString(flags) 6 es5id: 15.10.4.1_A8_T12 7 description: > 8 Pattern is "\u0042" and flags is {toString:void 0, 9 valueOf:function(){throw "invalof";} } 10 ---*/ 11 12 try { 13 throw new Test262Error('#1.1: new RegExp("\\u0042", {toString:void 0, valueOf:function(){throw "invalof";}}) throw "invalof". Actual: ' + (new RegExp("\u0042", {toString:void 0, valueOf:function(){throw "invalof";}}))); 14 } catch (e) { 15 assert.sameValue(e, "invalof", 'The value of e is expected to be "invalof"'); 16 } 17 18 // TODO: Convert to assert.throws() format. 19 20 reportCompare(0, 0);