S7.8.5_A2.3_T6.js (1009B)
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 esid: prod-RegularExpressionNonTerminator 6 info: | 7 RegularExpressionBody :: 8 RegularExpressionFirstChar RegularExpressionChars 9 10 RegularExpressionChars :: 11 [empty] 12 RegularExpressionChars RegularExpressionChar 13 14 RegularExpressionFirstChar :: 15 RegularExpressionNonTerminator but not one of * or \ or / or [ 16 17 RegularExpressionNonTerminator :: 18 SourceCharacter but not LineTerminator 19 20 description: > 21 A regular expression may not contain a <PS> as a SourceCharacter, evaluated 22 23 ---*/ 24 25 try { 26 eval("/s\u2029/").source; 27 throw new Test262Error('#1.1: RegularExpressionChar :: Paragraph separator is incorrect. Actual: ' + (eval("/s\u2029/").source)); 28 } 29 catch (e) { 30 if ((e instanceof SyntaxError) !== true) { 31 throw new Test262Error('#1.2: RegularExpressionChar :: Paragraph separator is incorrect. Actual: ' + (e)); 32 } 33 } 34 35 reportCompare(0, 0);