mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-16 04:59:23 +00:00
This ports the lexer to UTF-16 and deals with the immediate fallout up to the AST. The AST will be dealt with in upcoming commits. The lexer will still accept UTF-8 strings as input, and will transcode them to UTF-16 for lexing. This doesn't actually incur a new allocation, as we were already converting the input StringView to a ByteString for each lexer. One immediate logical benefit here is that we do not need to know off- hand how many UTF-8 bytes some special code points occupy. They all happen to be a single UTF-16 code unit. So instead of advancing the lexer by 3 positions in some cases, we can just always advance by 1.
282 lines
9.3 KiB
C++
282 lines
9.3 KiB
C++
/*
|
|
* Copyright (c) 2020, Stephan Unverwerth <s.unverwerth@serenityos.org>
|
|
* Copyright (c) 2020-2021, Linus Groh <linusg@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/Assertions.h>
|
|
#include <AK/CharacterTypes.h>
|
|
#include <AK/GenericLexer.h>
|
|
#include <AK/StringBuilder.h>
|
|
#include <LibJS/Token.h>
|
|
|
|
namespace JS {
|
|
|
|
char const* Token::name(TokenType type)
|
|
{
|
|
switch (type) {
|
|
#define __ENUMERATE_JS_TOKEN(type, category) \
|
|
case TokenType::type: \
|
|
return #type;
|
|
ENUMERATE_JS_TOKENS
|
|
#undef __ENUMERATE_JS_TOKEN
|
|
default:
|
|
VERIFY_NOT_REACHED();
|
|
return "<Unknown>";
|
|
}
|
|
}
|
|
|
|
char const* Token::name() const
|
|
{
|
|
return name(m_type);
|
|
}
|
|
|
|
TokenCategory Token::category(TokenType type)
|
|
{
|
|
switch (type) {
|
|
#define __ENUMERATE_JS_TOKEN(type, category) \
|
|
case TokenType::type: \
|
|
return TokenCategory::category;
|
|
ENUMERATE_JS_TOKENS
|
|
#undef __ENUMERATE_JS_TOKEN
|
|
default:
|
|
VERIFY_NOT_REACHED();
|
|
}
|
|
}
|
|
|
|
TokenCategory Token::category() const
|
|
{
|
|
return category(m_type);
|
|
}
|
|
|
|
double Token::double_value() const
|
|
{
|
|
VERIFY(type() == TokenType::NumericLiteral);
|
|
|
|
auto value = this->value();
|
|
Utf16String buffer;
|
|
|
|
if (value.contains('_')) {
|
|
buffer = value.replace("_"sv, {}, ReplaceMode::All);
|
|
value = buffer;
|
|
}
|
|
|
|
if (value.length_in_code_units() >= 2 && value.starts_with('0')) {
|
|
static constexpr auto fallback = NumericLimits<u64>::max();
|
|
auto next = value.code_unit_at(1);
|
|
|
|
// hexadecimal
|
|
if (next == 'x' || next == 'X')
|
|
return static_cast<double>(value.substring_view(2).to_number<u64>(TrimWhitespace::No, 16).value_or(fallback));
|
|
|
|
// octal
|
|
if (next == 'o' || next == 'O')
|
|
return static_cast<double>(value.substring_view(2).to_number<u64>(TrimWhitespace::No, 8).value_or(fallback));
|
|
|
|
// binary
|
|
if (next == 'b' || next == 'B')
|
|
return static_cast<double>(value.substring_view(2).to_number<u64>(TrimWhitespace::No, 2).value_or(fallback));
|
|
|
|
// also octal, but syntax error in strict mode
|
|
if (is_ascii_digit(next) && !value.contains_any_of({ { '8', '9' } }))
|
|
return static_cast<double>(value.substring_view(1).to_number<u64>(TrimWhitespace::No, 8).value_or(fallback));
|
|
}
|
|
|
|
// This should always be a valid double
|
|
return value.to_number<double>(TrimWhitespace::No).value();
|
|
}
|
|
|
|
Utf16String Token::string_value(StringValueStatus& status) const
|
|
{
|
|
VERIFY(type() == TokenType::StringLiteral || type() == TokenType::TemplateLiteralString);
|
|
|
|
auto is_template = type() == TokenType::TemplateLiteralString;
|
|
auto value = this->value();
|
|
|
|
Utf16GenericLexer lexer(is_template ? value : value.substring_view(1, value.length_in_code_units() - 2));
|
|
|
|
auto encoding_failure = [&status](StringValueStatus parse_status) -> Utf16String {
|
|
status = parse_status;
|
|
return {};
|
|
};
|
|
|
|
StringBuilder builder(StringBuilder::Mode::UTF16);
|
|
|
|
while (!lexer.is_eof()) {
|
|
// No escape, consume one char and continue
|
|
if (!lexer.next_is('\\')) {
|
|
if (is_template && lexer.next_is('\r')) {
|
|
lexer.ignore();
|
|
if (lexer.next_is('\n'))
|
|
lexer.ignore();
|
|
|
|
builder.append('\n');
|
|
continue;
|
|
}
|
|
|
|
builder.append_code_unit(lexer.consume());
|
|
continue;
|
|
}
|
|
|
|
// Unicode escape
|
|
if (lexer.next_is("\\u"sv)) {
|
|
auto code_point_or_error = lexer.consume_escaped_code_point();
|
|
|
|
if (code_point_or_error.is_error()) {
|
|
switch (code_point_or_error.error()) {
|
|
case AK::UnicodeEscapeError::MalformedUnicodeEscape:
|
|
return encoding_failure(StringValueStatus::MalformedUnicodeEscape);
|
|
case AK::UnicodeEscapeError::UnicodeEscapeOverflow:
|
|
return encoding_failure(StringValueStatus::UnicodeEscapeOverflow);
|
|
}
|
|
}
|
|
|
|
builder.append_code_point(code_point_or_error.value());
|
|
continue;
|
|
}
|
|
|
|
lexer.ignore();
|
|
VERIFY(!lexer.is_eof());
|
|
|
|
// Line continuation
|
|
if (lexer.next_is('\n') || lexer.next_is('\r')) {
|
|
if (lexer.next_is("\r\n"sv))
|
|
lexer.ignore();
|
|
lexer.ignore();
|
|
continue;
|
|
}
|
|
// Line continuation
|
|
if (lexer.next_is(LINE_SEPARATOR) || lexer.next_is(PARAGRAPH_SEPARATOR)) {
|
|
lexer.ignore();
|
|
continue;
|
|
}
|
|
// Null-byte escape
|
|
if (lexer.next_is('0') && !is_ascii_digit(lexer.peek(1))) {
|
|
lexer.ignore();
|
|
builder.append('\0');
|
|
continue;
|
|
}
|
|
// Hex escape
|
|
if (lexer.next_is('x')) {
|
|
lexer.ignore();
|
|
if (!is_ascii_hex_digit(lexer.peek()) || !is_ascii_hex_digit(lexer.peek(1)))
|
|
return encoding_failure(StringValueStatus::MalformedHexEscape);
|
|
|
|
auto code_point = lexer.consume(2).to_number<u32>(TrimWhitespace::No, 16).value();
|
|
VERIFY(code_point <= 255);
|
|
|
|
builder.append_code_point(code_point);
|
|
continue;
|
|
}
|
|
|
|
// In non-strict mode LegacyOctalEscapeSequence is allowed in strings:
|
|
// https://tc39.es/ecma262/#sec-additional-syntax-string-literals
|
|
Optional<Utf16View> octal_str;
|
|
|
|
auto is_octal_digit = [](auto ch) { return ch >= '0' && ch <= '7'; };
|
|
auto is_zero_to_three = [](auto ch) { return ch >= '0' && ch <= '3'; };
|
|
auto is_four_to_seven = [](auto ch) { return ch >= '4' && ch <= '7'; };
|
|
|
|
// OctalDigit [lookahead ∉ OctalDigit]
|
|
if (is_octal_digit(lexer.peek()) && !is_octal_digit(lexer.peek(1)))
|
|
octal_str = lexer.consume(1);
|
|
// ZeroToThree OctalDigit [lookahead ∉ OctalDigit]
|
|
else if (is_zero_to_three(lexer.peek()) && is_octal_digit(lexer.peek(1)) && !is_octal_digit(lexer.peek(2)))
|
|
octal_str = lexer.consume(2);
|
|
// FourToSeven OctalDigit
|
|
else if (is_four_to_seven(lexer.peek()) && is_octal_digit(lexer.peek(1)))
|
|
octal_str = lexer.consume(2);
|
|
// ZeroToThree OctalDigit OctalDigit
|
|
else if (is_zero_to_three(lexer.peek()) && is_octal_digit(lexer.peek(1)) && is_octal_digit(lexer.peek(2)))
|
|
octal_str = lexer.consume(3);
|
|
|
|
if (octal_str.has_value()) {
|
|
status = StringValueStatus::LegacyOctalEscapeSequence;
|
|
|
|
auto code_point = octal_str->to_number<u32>(TrimWhitespace::No, 8).value();
|
|
VERIFY(code_point <= 255);
|
|
|
|
builder.append_code_point(code_point);
|
|
continue;
|
|
}
|
|
|
|
if (lexer.next_is('8') || lexer.next_is('9')) {
|
|
status = StringValueStatus::LegacyOctalEscapeSequence;
|
|
builder.append_code_unit(lexer.consume());
|
|
continue;
|
|
}
|
|
|
|
lexer.retreat();
|
|
builder.append_code_unit(lexer.consume_escaped_character('\\', "b\bf\fn\nr\rt\tv\v"sv));
|
|
}
|
|
|
|
return builder.to_utf16_string();
|
|
}
|
|
|
|
// 12.8.6.2 Static Semantics: TRV, https://tc39.es/ecma262/#sec-static-semantics-trv
|
|
Utf16String Token::raw_template_value() const
|
|
{
|
|
return value().replace("\r\n"sv, "\n"sv, ReplaceMode::All).replace("\r"sv, "\n"sv, ReplaceMode::All);
|
|
}
|
|
|
|
bool Token::bool_value() const
|
|
{
|
|
VERIFY(type() == TokenType::BoolLiteral);
|
|
return value() == "true"sv;
|
|
}
|
|
|
|
bool Token::is_identifier_name() const
|
|
{
|
|
// IdentifierNames are Identifiers + ReservedWords
|
|
// The standard defines this reversed: Identifiers are IdentifierNames except reserved words
|
|
// https://tc39.es/ecma262/#prod-Identifier
|
|
return m_type == TokenType::Identifier
|
|
|| m_type == TokenType::EscapedKeyword
|
|
|| m_type == TokenType::Await
|
|
|| m_type == TokenType::Async
|
|
|| m_type == TokenType::BoolLiteral
|
|
|| m_type == TokenType::Break
|
|
|| m_type == TokenType::Case
|
|
|| m_type == TokenType::Catch
|
|
|| m_type == TokenType::Class
|
|
|| m_type == TokenType::Const
|
|
|| m_type == TokenType::Continue
|
|
|| m_type == TokenType::Debugger
|
|
|| m_type == TokenType::Default
|
|
|| m_type == TokenType::Delete
|
|
|| m_type == TokenType::Do
|
|
|| m_type == TokenType::Else
|
|
|| m_type == TokenType::Enum
|
|
|| m_type == TokenType::Export
|
|
|| m_type == TokenType::Extends
|
|
|| m_type == TokenType::Finally
|
|
|| m_type == TokenType::For
|
|
|| m_type == TokenType::Function
|
|
|| m_type == TokenType::If
|
|
|| m_type == TokenType::Import
|
|
|| m_type == TokenType::In
|
|
|| m_type == TokenType::Instanceof
|
|
|| m_type == TokenType::Let
|
|
|| m_type == TokenType::New
|
|
|| m_type == TokenType::NullLiteral
|
|
|| m_type == TokenType::Return
|
|
|| m_type == TokenType::Super
|
|
|| m_type == TokenType::Switch
|
|
|| m_type == TokenType::This
|
|
|| m_type == TokenType::Throw
|
|
|| m_type == TokenType::Try
|
|
|| m_type == TokenType::Typeof
|
|
|| m_type == TokenType::Var
|
|
|| m_type == TokenType::Void
|
|
|| m_type == TokenType::While
|
|
|| m_type == TokenType::With
|
|
|| m_type == TokenType::Yield;
|
|
}
|
|
|
|
bool Token::trivia_contains_line_terminator() const
|
|
{
|
|
return m_trivia.contains('\n') || m_trivia.contains('\r') || m_trivia.contains(LINE_SEPARATOR) || m_trivia.contains(PARAGRAPH_SEPARATOR);
|
|
}
|
|
|
|
}
|