S15.10.4.1_A8_T13.js (674B)
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_T13 7 description: > 8 Pattern is "1" and flags is {toString:function(){throw "intostr";} 9 } 10 ---*/ 11 12 try { 13 throw new Test262Error('#1.1: new RegExp("1", {toString:function(){throw "intostr";}}) throw "intostr". Actual: ' + (new RegExp("1", {toString:function(){throw "intostr";}}))); 14 } catch (e) { 15 assert.sameValue(e, "intostr", 'The value of e is expected to be "intostr"'); 16 } 17 18 // TODO: Convert to assert.throws() format. 19 20 reportCompare(0, 0);