/* * Copyright (c) 2020, Stephan Unverwerth * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include #include #include #include namespace JS { enum class Associativity { Left, Right }; struct FunctionNodeParseOptions { enum { CheckForFunctionAndName = 1 << 0, AllowSuperPropertyLookup = 1 << 1, AllowSuperConstructorCall = 1 << 2, IsGetterFunction = 1 << 3, IsSetterFunction = 1 << 4, IsArrowFunction = 1 << 5, }; }; class Parser { public: explicit Parser(Lexer lexer); NonnullRefPtr parse_program(); template NonnullRefPtr parse_function_node(u8 parse_options = FunctionNodeParseOptions::CheckForFunctionAndName); Vector parse_formal_parameters(int& function_length, u8 parse_options = 0); RefPtr parse_binding_pattern(); NonnullRefPtr parse_declaration(); NonnullRefPtr parse_statement(); NonnullRefPtr parse_block_statement(); NonnullRefPtr parse_block_statement(bool& is_strict); NonnullRefPtr parse_return_statement(); NonnullRefPtr parse_variable_declaration(bool for_loop_variable_declaration = false); NonnullRefPtr parse_for_statement(); NonnullRefPtr parse_for_in_of_statement(NonnullRefPtr lhs); NonnullRefPtr parse_if_statement(); NonnullRefPtr parse_throw_statement(); NonnullRefPtr parse_try_statement(); NonnullRefPtr parse_catch_clause(); NonnullRefPtr parse_switch_statement(); NonnullRefPtr parse_switch_case(); NonnullRefPtr parse_break_statement(); NonnullRefPtr parse_continue_statement(); NonnullRefPtr parse_do_while_statement(); NonnullRefPtr parse_while_statement(); NonnullRefPtr parse_with_statement(); NonnullRefPtr parse_debugger_statement(); NonnullRefPtr parse_conditional_expression(NonnullRefPtr test); NonnullRefPtr parse_expression(int min_precedence, Associativity associate = Associativity::Right, const Vector& forbidden = {}); NonnullRefPtr parse_primary_expression(); NonnullRefPtr parse_unary_prefixed_expression(); NonnullRefPtr parse_regexp_literal(); NonnullRefPtr parse_object_expression(); NonnullRefPtr parse_array_expression(); NonnullRefPtr parse_string_literal(const Token& token, bool in_template_literal = false); NonnullRefPtr parse_template_literal(bool is_tagged); NonnullRefPtr parse_secondary_expression(NonnullRefPtr, int min_precedence, Associativity associate = Associativity::Right); NonnullRefPtr parse_call_expression(NonnullRefPtr); NonnullRefPtr parse_new_expression(); NonnullRefPtr parse_class_declaration(); NonnullRefPtr parse_class_expression(bool expect_class_name); NonnullRefPtr parse_yield_expression(); NonnullRefPtr parse_property_key(); NonnullRefPtr parse_assignment_expression(AssignmentOp, NonnullRefPtr lhs, int min_precedence, Associativity); RefPtr try_parse_arrow_function_expression(bool expect_parens); RefPtr try_parse_labelled_statement(); RefPtr try_parse_new_target_expression(); struct Error { String message; Optional position; String to_string() const { if (!position.has_value()) return message; return String::formatted("{} (line: {}, column: {})", message, position.value().line, position.value().column); } String source_location_hint(const StringView& source, const char spacer = ' ', const char indicator = '^') const { if (!position.has_value()) return {}; // We need to modify the source to match what the lexer considers one line - normalizing // line terminators to \n is easier than splitting using all different LT characters. String source_string { source }; source_string.replace("\r\n", "\n"); source_string.replace("\r", "\n"); source_string.replace(LINE_SEPARATOR, "\n"); source_string.replace(PARAGRAPH_SEPARATOR, "\n"); StringBuilder builder; builder.append(source_string.split_view('\n', true)[position.value().line - 1]); builder.append('\n'); for (size_t i = 0; i < position.value().column - 1; ++i) builder.append(spacer); builder.append(indicator); return builder.build(); } }; bool has_errors() const { return m_parser_state.m_errors.size(); } const Vector& errors() const { return m_parser_state.m_errors; } void print_errors() const { for (auto& error : m_parser_state.m_errors) { auto hint = error.source_location_hint(m_parser_state.m_lexer.source()); if (!hint.is_empty()) warnln("{}", hint); warnln("SyntaxError: {}", error.to_string()); } } struct TokenMemoization { bool try_parse_arrow_function_expression_failed; }; private: friend class ScopePusher; Associativity operator_associativity(TokenType) const; bool match_expression() const; bool match_unary_prefixed_expression() const; bool match_secondary_expression(const Vector& forbidden = {}) const; bool match_statement() const; bool match_declaration() const; bool match_variable_declaration() const; bool match_identifier_name() const; bool match_property_key() const; bool match(TokenType type) const; bool done() const; void expected(const char* what); void syntax_error(const String& message, Optional = {}); Token consume(); Token consume(TokenType type); Token consume_and_validate_numeric_literal(); void consume_or_insert_semicolon(); void save_state(); void load_state(); void discard_saved_state(); Position position() const; bool try_parse_arrow_function_expression_failed_at_position(const Position&) const; void set_try_parse_arrow_function_expression_failed_at_position(const Position&, bool); struct RulePosition { AK_MAKE_NONCOPYABLE(RulePosition); AK_MAKE_NONMOVABLE(RulePosition); public: RulePosition(Parser& parser, Position position) : m_parser(parser) , m_position(position) { m_parser.m_rule_starts.append(position); } ~RulePosition() { auto last = m_parser.m_rule_starts.take_last(); VERIFY(last.line == m_position.line); VERIFY(last.column == m_position.column); } const Position& position() const { return m_position; } private: Parser& m_parser; Position m_position; }; [[nodiscard]] RulePosition push_start() { return { *this, position() }; } struct ParserState { Lexer m_lexer; Token m_current_token; Vector m_errors; Vector> m_var_scopes; Vector> m_let_scopes; Vector> m_function_scopes; Vector&> function_parameters; HashTable m_labels_in_scope; bool m_strict_mode { false }; bool m_allow_super_property_lookup { false }; bool m_allow_super_constructor_call { false }; bool m_in_function_context { false }; bool m_in_generator_function_context { false }; bool m_in_arrow_function_context { false }; bool m_in_break_context { false }; bool m_in_continue_context { false }; bool m_string_legacy_octal_escape_sequence_in_scope { false }; explicit ParserState(Lexer); }; class PositionKeyTraits { public: static int hash(const Position& position) { return int_hash(position.line) ^ int_hash(position.column); } static bool equals(const Position& a, const Position& b) { return a.column == b.column && a.line == b.line; } }; Vector m_rule_starts; ParserState m_parser_state; FlyString m_filename; Vector m_saved_state; HashMap m_token_memoizations; }; }