line-separator-eval.js (570B)
1 // Copyright (C) 2018 Richard Gibson. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 esid: sec-literals-string-literals 6 description: > 7 U+2028 LINE SEPARATOR can appear in string literals (eval code). 8 info: | 9 11.8.4 String Literals 10 11 All code points may appear literally in a string literal except for the 12 closing quote code points, U+005C (REVERSE SOLIDUS), U+000D (CARRIAGE RETURN), 13 and U+000A (LINE FEED). 14 features: [json-superset] 15 ---*/ 16 17 assert.sameValue(eval("'\u2028'"), "\u2028"); 18 19 reportCompare(0, 0);