The code below comes from ScanString() I noticed that if the scanner encounters a '\' before a c0 > kMaxAscii HandleLeadSurrogate() (0xd800+0xdc00 surrogate handling) is no longer done.
I tried to make a test file that had such things, but node failed to read utf-16 encoded file even with BOM marks.... But also, if there is no backslash, then PS and LS (0x2028, 0x2029) characters are not considered valid line ending and would be stored in the string literal.... (IsLineTerminator test) while (true) { if (c0_ > kMaxAscii) { HandleLeadSurrogate(); break; } if (c0_ == kEndOfInput || c0_ == '\n' || c0_ == '\r') return Token::ILLEGAL; if (c0_ == quote) { literal.Complete(); Advance<false, false>(); return Token::STRING; } char c = static_cast<char>(c0_); if (c == '\\') break; Advance<false, false>(); AddLiteralChar(c); } while (c0_ != quote && c0_ != kEndOfInput && !IsLineTerminator(c0_)) { uc32 c = c0_; Advance(); if (c == '\\') { if (c0_ == kEndOfInput || !ScanEscape<false, false>()) { return Token::ILLEGAL; } } else { AddLiteralChar(c); } } -- -- v8-users mailing list v8-users@googlegroups.com http://groups.google.com/group/v8-users --- You received this message because you are subscribed to the Google Groups "v8-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to v8-users+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.