// Copyright (C) 2018 Richard Gibson. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-literals-string-literals description: > Line terminators may occur within string literals as part of a |LineContinuation| to produce the empty code points sequence. info: | 11.8.4 String Literals StringLiteral :: `"` DoubleStringCharacters? `"` `'` SingleStringCharacters? `'` DoubleStringCharacters :: DoubleStringCharacter DoubleStringCharacters? DoubleStringCharacter :: SourceCharacter but not one of `"` or `\` or LineTerminator `\` EscapeSequence LineContinuation LineContinuation :: `\` LineTerminatorSequence 11.3 Line Terminators LineTerminatorSequence :: [lookahead != ] 11.8.4.2 Static Semantics: SV The SV of DoubleStringCharacter :: LineContinuation is the empty code unit sequence. ---*/ // LineTerminatorSequence :: assert.sameValue("\ ", ""); // LineTerminatorSequence :: [lookahead ≠ ] assert.sameValue("\ ", ""); // LineTerminatorSequence :: // is U+2028 LINE SEPARATOR; UTF8(0x2028) = 0xE2 0x80 0xA8 assert.sameValue("\
", ""); // LineTerminatorSequence :: // is U+2029 PARAGRAPH SEPARATOR; UTF8(0x2029) = 0xE2 0x80 0xA9 assert.sameValue("\
", ""); // LineTerminatorSequence :: assert.sameValue("\ ", ""); reportCompare(0, 0);